The leading provider of version control solutions and TWAIN SDKs
  • Contact us









BindSSLCertEx Method

Description

Binds a certificate by detecting it using a keyword in the Subject field of the certificate.

ActiveX Edition Plug-in Edition Mac Edition
Since V6.1 Since V6.1 Since V6.4

Syntax

Boolean ObjectName.BindSSLCertEx(string CertSubjectKeyword)

Parameters

CertSubjectKeyword: specifies a subject keyword of the certificate

Return value

Boolean.

TRUE indicates success. FALSE indicates failure.

When an error occurs and IfThrowException property is TRUE, an exception will be thrown.

When FALSE is returned or an exception is thrown, check ErrorCode property and ErrorString property for error information.

Remarks

If the Subject field is

CN = www.yoursite.com
OU = Terms of use at www.yoursite.com
O = Your Corporation
L = Toronto
S = Ontario
C = CA

You can set the Keyword to be "www.yoursite.com" or "Terms of use at www.yoursite.com" or "Your Corporation" etc. as in:

Webcam.BindSSLCertEx("www.yoursite.com");

See also

BindSSLCert()