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
)
Function CreateCalAddressProp (
uri As String,
Optional commonName As String = Nothing,
Optional sentBy As String = Nothing,
Optional dirEntryRef As String = Nothing,
Optional language As String = Nothing
) As ICalAddress
ICalAddress^ CreateCalAddressProp(
String^ uri,
String^ commonName = nullptr,
String^ sentBy = nullptr,
String^ dirEntryRef = nullptr,
String^ language = nullptr
)
abstract CreateCalAddressProp :
uri : string *
?commonName : string *
?sentBy : string *
?dirEntryRef : string *
?language : string
(* Defaults:
let _commonName = defaultArg commonName null
let _sentBy = defaultArg sentBy null
let _dirEntryRef = defaultArg dirEntryRef null
let _language = defaultArg language null
*)
-> ICalAddress
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:
ICalAddressObject implementing
ICalAddress or null if
uri parameter is null.
See Also