VNoteParserParseFromFile Method

This static method can be used to load property values into a new vNote collection from a file. The filename can be a disk file or a URL.

Definition

Namespace: EWSoftware.PDI.Parser
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public static VNoteCollection ParseFromFile(
	string filename
)

Parameters

filename  String
A path or URL to a file containing one or more vNotes

Return Value

VNoteCollection
A new vNote collection as created from the file

Example

C#
VNoteCollection vNotes1 = VNoteParser.ParseFromFile(@"C:\Notes.vnt");
VNoteCollection vNotes2 = VNoteParser.ParseFromFile(
    "http://www.mydomain.com/VNotes/Notes.vnt");

See Also