Click or drag to resize
SignDocDocumentLoaderloadTrustedCertificatesFromStream Method
Load trusted root CA certifcates from a stream. The loaded certificates are used for all SignDocDocument objects created by this object. They are used for signature verification and HTTPS connections. For iOS, they replace the system's trusted anchors, for other operating systems, they are used in addition to the operating system's trusted root CA certificates. The stream must contain either a single DER-encoded X.509 certificate or at least one PEM-encoded X.509 certificate.

Namespace:  de.softpro.signdocsdk
Assembly:  SPSignDoc_4.3_DotNetLib (in SPSignDoc_4.3_DotNetLib.dll) Version: 1.0.6773.37566
Syntax
C#
public void loadTrustedCertificatesFromStream(
	Stream stream
)

Parameters

stream
Type: System.IOStream
The certificates will be read from this stream.

Return Value

Type: 
true if successful, false on error.
See Also