ISoftPhoneSetClientCertificates Method |
Sets the mapping of remote hosts to their associated client certificate
collections used for mutual TLS (mTLS) authentication.
This is a system-wide configuration affecting all softphone instances and all
TLS-based transports in the application.
Note: This API is experimental and may be changed or removed in a future release.
Namespace: Ozeki.VoIPAssembly: OzekiSDK (in OzekiSDK.dll) Version: 10.4.99
Syntaxvoid SetClientCertificates(
Dictionary<string, X509CertificateCollection> certificatesByHost
)
Sub SetClientCertificates (
certificatesByHost As Dictionary(Of String, X509CertificateCollection)
)
void SetClientCertificates(
Dictionary<String^, X509CertificateCollection^>^ certificatesByHost
)
abstract SetClientCertificates :
certificatesByHost : Dictionary<string, X509CertificateCollection> -> unit Parameters
- certificatesByHost DictionaryString, X509CertificateCollection
-
A dictionary mapping remote hosts (IP address or domain name) to the
X509CertificateCollection that should be used when establishing
mutual TLS connections.
See Also