| SignDocDocumentLoaderloadFromMemory Method |
Load a document from memory.
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic SignDocDocument loadFromMemory(
byte[] data
)
Public Function loadFromMemory (
data As Byte()
) As SignDocDocument
public:
SignDocDocument^ loadFromMemory(
array<unsigned char>^ data
)
member loadFromMemory :
data : byte[] -> SignDocDocument
Parameters
- data
- Type: SystemByte
Blob representing the document. The data must not be modified.
Return Value
Type:
SignDocDocumentA new SignDocDocument object representing the document. After use, SignDocDocument.close() should be to free up native resources as soon as possible.
See Also