Creates TlsOptions with client-provided client credentials
and trusted certificates
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.18.1.1
Syntax public static TlsOptions Create(
X509Certificate2 clientCredentials,
X509Certificate2Collection trustedCertificates
)
Public Shared Function Create (
clientCredentials As X509Certificate2,
trustedCertificates As X509Certificate2Collection
) As TlsOptions
public:
static TlsOptions^ Create(
X509Certificate2^ clientCredentials,
X509Certificate2Collection^ trustedCertificates
)
static member Create :
clientCredentials : X509Certificate2 *
trustedCertificates : X509Certificate2Collection -> TlsOptions
Parameters
- clientCredentials
- Type: System.Security.Cryptography.X509CertificatesX509Certificate2
client certificate and private key
- trustedCertificates
- Type: System.Security.Cryptography.X509CertificatesX509Certificate2Collection
trusted certificates
Return Value
Type:
TlsOptions
A new
TlsOptions object
See Also