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.
Namespace: EWSoftware.PDI.ParserAssembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public static VNoteCollection ParseFromFile(
string filename
)
Public Shared Function ParseFromFile (
filename As String
) As VNoteCollection
public:
static VNoteCollection^ ParseFromFile(
String^ filename
)
static member ParseFromFile :
filename : string -> VNoteCollection
- filename String
- A path or URL to a file containing one or more vNotes
VNoteCollectionA new vNote collection as created from the file
VNoteCollection vNotes1 = VNoteParser.ParseFromFile(@"C:\Notes.vnt");
VNoteCollection vNotes2 = VNoteParser.ParseFromFile(
"http://www.mydomain.com/VNotes/Notes.vnt");
Dim vNotes1 As VNoteCollection = VNoteParser.ParseFromFile("C:\Notes.vnt")
Dim vNotes2 As VNoteCollection = VNoteParser.ParseFromFile( _
"http://www.mydomain.com/VNotes/Notes.vnt")
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.