VCardParserParseFromStream Method
Namespace: EWSoftware.PDI.ParserAssembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public static VCardCollection ParseFromStream(
TextReader stream
)
Public Shared Function ParseFromStream (
stream As TextReader
) As VCardCollection
public:
static VCardCollection^ ParseFromStream(
TextReader^ stream
)
static member ParseFromStream :
stream : TextReader -> VCardCollection
- stream TextReader
- An IO stream from which to read the vCards. It is up to you to open the stream
with the appropriate text encoding method if necessary.
VCardCollectionA new vCard collection as created from the IO stream
StreamReader sr = new StreamReader(@"C:\Test.vcf");
VCardCollection vCards1 = VCardParser.ParseFromStream(sr);
sr.Close();
Dim sr As New StreamReader("C:\Test.vcf")
Dim vCards1 As VCardCollection = VCardParser.ParseFromStream(sr)
sr.Close()
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.