Declaring Type: LocalInputSource
Namespace: Mindee.Input
Assembly: Mindee
Assembly Version: 3.21.0+995c229708fe61b0dacbe0bfca8ad9e39db87623
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