Click or drag to resize

ICalendar2CreateCalAddressProp Method

IT Hit WebDAV Classes Reference
Creates ICalAddress property. Returns null if uri parameter is null. Assign the value returned by this method to properties that has a ICalAddress type such as Organizer.

Namespace:  ITHit.Collab.Calendar
Assembly:  ITHit.Collab (in ITHit.Collab.dll) Version: 1.0.0.540 (1.0.0.540)
Syntax
ICalAddress CreateCalAddressProp(
	string uri,
	string commonName = null,
	string sentBy = null,
	string dirEntryRef = null,
	string language = null
)

Parameters

uri
Type: SystemString
Unencoded text to be used as a URI. This is typically e-mail with 'mailto:' schema. If null is passed, this method returns null.
commonName (Optional)
Type: SystemString
Common name to be associated with the calendar user. Sets "CN" parameter value.
sentBy (Optional)
Type: SystemString
Calendar user that is acting on behalf of the calendar user. Sets "SENTBY" parameter value.
dirEntryRef (Optional)
Type: SystemString
Reference to a directory entry associated with the calendar user. Sets "DIR" parameter value.
language (Optional)
Type: SystemString
Language. Sets "LANGUAGE" parameter value.

Return Value

Type: ICalAddress
Object implementing ICalAddress or null if uri parameter is null.
See Also