Creates new participant with specified common name and email.

Namespace: Limilabs.Mail.Appointments
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
public Participant(
	string cn,
	string email,
	ParticipationRole role,
	bool responseRequired
)
Visual Basic
Public Sub New ( _
	cn As String, _
	email As String, _
	role As ParticipationRole, _
	responseRequired As Boolean _
)
Visual C++
public:
Participant(
	String^ cn, 
	String^ email, 
	ParticipationRole^ role, 
	bool responseRequired
)

Parameters

cn
Type: System..::..String
Common name of the person.
email
Type: System..::..String
Email of the person.
role
Type: Limilabs.Mail.Appointments..::..ParticipationRole
Participation role.
responseRequired
Type: System..::..Boolean
Specifies whether participant is required.

See Also