CardFactoryCreateCard3 Method (String, String, String, String, String, String)
IT Hit WebDAV Classes Reference
Creates business card in v3.0 format.
Namespace:
ITHit.Collab.Card
Assembly:
ITHit.Collab (in ITHit.Collab.dll) Version: 1.0.0.540 (1.0.0.540)
Syntax public static ICard3 CreateCard3(
string formattedName,
string[] familyName,
string[] givenName,
string[] additionalNames,
string[] honorificPrefix,
string[] honorificSuffix
)
Public Shared Function CreateCard3 (
formattedName As String,
familyName As String(),
givenName As String(),
additionalNames As String(),
honorificPrefix As String(),
honorificSuffix As String()
) As ICard3
public:
static ICard3^ CreateCard3(
String^ formattedName,
array<String^>^ familyName,
array<String^>^ givenName,
array<String^>^ additionalNames,
array<String^>^ honorificPrefix,
array<String^>^ honorificSuffix
)
static member CreateCard3 :
formattedName : string *
familyName : string[] *
givenName : string[] *
additionalNames : string[] *
honorificPrefix : string[] *
honorificSuffix : string[] -> ICard3
Parameters
- formattedName
- Type: SystemString
Represents business card formatted name. Examples For example "Dr. John Doe".
- familyName
- Type: SystemString
Represents Family Name. Examples For example: "Stevenson"
- givenName
- Type: SystemString
Represents Given Name. Examples For example: "John"
- additionalNames
- Type: SystemString
Represents Additional Names. Examples For example: "Philip,Paul"
- honorificPrefix
- Type: SystemString
Represents Honorific Prefixes. Examples For example: "Dr."
- honorificSuffix
- Type: SystemString
Represents Honorific Suffixes. Examples For example: "Jr.,M.D.,A.C.P."
Return Value
Type:
ICard3Business card in v3.0 format.
See Also