| 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.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic void loadTrustedCertificatesFromStream(
Stream stream
)
Public Sub loadTrustedCertificatesFromStream (
stream As Stream
)
public:
void loadTrustedCertificatesFromStream(
Stream^ stream
)
member loadTrustedCertificatesFromStream :
stream : Stream -> unit
Parameters
- stream
- Type: System.IOStream
The certificates will be read from this stream.
Return Value
Type:
true if successful, false on error.
See Also