VCard ParserParse From String(String) Method
This static method can be used to load property values into a new instance of a single vCard from a
string.
Definition
Namespace: EWSoftware.PDI.Parser
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
A new vCard instance as created from the string
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public static VCard ParseFromString(
string? vCardText
)VB
Public Shared Function ParseFromString (
vCardText As String
) As VCardC++
public:
static VCard^ ParseFromString(
String^ vCardText
)F#
static member ParseFromString :
vCardText : string -> VCard Parameters
- vCardText String
- A set of properties for a single vCard in a string
Return Value
VCardA new vCard instance as created from the string
Example
C#
VCard vCard = VCardParser.ParseFromString(oneVCard);VB
Dim vCard As VCard = VCardParser.ParseFromString(oneVCard)C++
No code example is currently available or this language may not be supported.F#
No code example is currently available or this language may not be supported.