VCardParserParseFromString(String, VCard) Method
This static method can be used to load property values into an existing instance of a single vCard
from a string.
Namespace: EWSoftware.PDI.ParserAssembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public static void ParseFromString(
string vCardText,
VCard vCard
)
Public Shared Sub ParseFromString (
vCardText As String,
vCard As VCard
)
public:
static void ParseFromString(
String^ vCardText,
VCard^ vCard
)
static member ParseFromString :
vCardText : string *
vCard : VCard -> unit
Parameters
- vCardText String
- A set of properties for a single vCard in a string
- vCard VCard
- The vCard instance into which the properties will be loaded
The properties of the specified vCard will be cleared before the new properties are loaded
into it.
VCard vCard = new VCard();
VCardParser.ParseFromString(oneVCard, vCard);
Dim vCard As New VCard
VCardParser.ParseFromString(oneVCard, vCard)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.