[This is preliminary documentation and is subject to change.]

Constructor to create object using the user id, name and email Address.

Namespace:  OfficeClip.BusinessLayer.Desktop
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public MeetingAttendeeInfo(
	int attendeeUserId,
	string attendeeName,
	string attendeeEmailAddress,
	bool isExternalUser
)
Visual Basic (Declaration)
Public Sub New ( _
	attendeeUserId As Integer, _
	attendeeName As String, _
	attendeeEmailAddress As String, _
	isExternalUser As Boolean _
)
Visual C++
public:
MeetingAttendeeInfo(
	int attendeeUserId, 
	String^ attendeeName, 
	String^ attendeeEmailAddress, 
	bool isExternalUser
)

Parameters

attendeeUserId
Type: System..::.Int32
the user identifier of the meeting attendies.
attendeeName
Type: System..::.String
The attendies name
attendeeEmailAddress
Type: System..::.String
The attendies email Address.
isExternalUser
Type: System..::.Boolean
Flag (True/False) indicating that it is true or false.

See Also