QueryClientCertificateCallback Delegate
.NET Framework 2.0
The QueryClientCertificateCallback delegate gets or sets the default callback function used to specify the client certificates while establishing an SSL connection.
Namespace: System.DirectoryServices.Protocols
Assembly: System.DirectoryServices.Protocols (in system.directoryservices.protocols.dll)
Assembly: System.DirectoryServices.Protocols (in system.directoryservices.protocols.dll)
'Declaration Public Delegate Function QueryClientCertificateCallback ( _ connection As LdapConnection, _ trustedCAs As Byte()() _ ) As X509Certificate 'Usage Dim instance As New QueryClientCertificateCallback(AddressOf HandlerMethod)
/** @delegate */ public delegate X509Certificate QueryClientCertificateCallback ( LdapConnection connection, byte[][] trustedCAs )
Not applicable.
Parameters
- connection
A LdapConnection object that specifies the connection.
- trustedCAs
An array of Byte arrays that specifies the trusted certification authorities (CAs).
Return Value
The default callback function used to specify the client certificates while establishing an SSL connection.Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: