VCardParserParseSetFromString 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: 2023.1.2.0
public static VCardCollection ParseSetFromString(
	string vCards
)

Parameters

vCards  String
A set of properties for one or more vCards in a string

Return Value

VCardCollection
A new vCard collection as created from the string

Example

C#
VCardCollection vCards = VCardParser.ParseSetFromString(vCards);

See Also