VCard Constructor (String, String, String, String) |
Creates a basic contact
Namespace: ARPDev.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic VCard(
string FirstName,
string Surname,
string Company = "",
string EMailAddress = ""
)
Public Sub New (
FirstName As String,
Surname As String,
Optional Company As String = "",
Optional EMailAddress As String = ""
)
public:
VCard(
String^ FirstName,
String^ Surname,
String^ Company = L"",
String^ EMailAddress = L""
)
new :
FirstName : string *
Surname : string *
?Company : string *
?EMailAddress : string
(* Defaults:
let _Company = defaultArg Company ""
let _EMailAddress = defaultArg EMailAddress ""
*)
-> VCard
Parameters
- FirstName
- Type: SystemString
Contact's Given Name - Surname
- Type: SystemString
Contact's Surname - Company (Optional)
- Type: SystemString
Contact's Company - EMailAddress (Optional)
- Type: SystemString
Contact's E-Mail Address
Remarks
See Also