VCard ParserParse Set From String Method
This static method can be used to load property values into a new vCard collection from a string
containing one or more vCards.
Definition
Namespace: EWSoftware.PDI.Parser
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
A new vCard collection as created from the string
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public static VCardCollection ParseSetFromString(
string? vCards
)VB
Public Shared Function ParseSetFromString (
vCards As String
) As VCardCollectionC++
public:
static VCardCollection^ ParseSetFromString(
String^ vCards
)F#
static member ParseSetFromString :
vCards : string -> VCardCollection Parameters
- vCards String
- A set of properties for one or more vCards in a string
Return Value
VCardCollectionA new vCard collection as created from the string
Example
C#
VCardCollection vCards = VCardParser.ParseSetFromString(vCards);VB
Dim vCards As VCardCollection = VCardParser.ParseSetFromString(vCards)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.