Declaring Type: LocalInputSource
Namespace: Mindee.Input
Assembly: Mindee
Assembly Version: 3.22.0+aa1b44d54eab23ff2156f9ad9391c70a961697c0
Signature | Description |
---|---|
LocalInputSource(FileInfo) | Load the document to perform some checks. |
LocalInputSource(Stream, string) | Construct from stream. |
LocalInputSource(byte[], string) | Construct from bytes. |
LocalInputSource(string) | Construct from string. |
Load the document to perform some checks.
public LocalInputSource(FileInfo fileinfo);
fileinfo
FileInfo
File information from the file to load from disk.
Construct from stream.
public LocalInputSource(Stream fileStream, string filename);
fileStream
Stream
The file contents as a stream.
filename
string
The file name.
Construct from bytes.
public LocalInputSource(byte[] fileBytes, string filename);
fileBytes
byte[]
The file contents as bytes.
filename
string
The name of the file.
Construct from string.
public LocalInputSource(string filePath);
filePath
string
The file’s local path as a string.
Documentation generated by MdDocs