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