VCardParserParseFromFile Method
This static method can be used to load property values into a new vCard collection from a file. The
filename can be a disk file or a URL.
Namespace: EWSoftware.PDI.ParserAssembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public static VCardCollection ParseFromFile(
string filename
)
Public Shared Function ParseFromFile (
filename As String
) As VCardCollection
public:
static VCardCollection^ ParseFromFile(
String^ filename
)
static member ParseFromFile :
filename : string -> VCardCollection
- filename String
- A path or URL to a file containing one or more vCards
VCardCollectionA new vCard collection as created from the file
VCardCollection vCards1 = VCardParser.ParseFromFile(@"C:\AddressBook.vcf");
VCardCollection vCards2 = VCardParser.ParseFromFile(
"http://www.mydomain.com/VCards/AddressBook.vcf");
Dim vCards1 As VCardCollection = VCardParser.ParseFromFile("C:\AddressBook.vcf")
Dim vCards2 As VCardCollection = VCardParser.ParseFromFile(
"http://www.mydomain.com/VCards/AddressBook.vcf")
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.