QueryClientCertificateCallback Delegar
Definição
O delegado QueryClientCertificateCallback obtém ou define a função de retorno de chamada padrão usada para verificar os certificados do cliente ao estabelecer uma conexão SSL.The QueryClientCertificateCallback delegate gets or sets the default callback function used to specify the client certificates while establishing an SSL connection.
public delegate System::Security::Cryptography::X509Certificates::X509Certificate ^ QueryClientCertificateCallback(LdapConnection ^ connection, cli::array <cli::array <System::Byte> ^> ^ trustedCAs);
public delegate System.Security.Cryptography.X509Certificates.X509Certificate QueryClientCertificateCallback(LdapConnection connection, byte[][] trustedCAs);
type QueryClientCertificateCallback = delegate of LdapConnection * byte[][] -> X509Certificate
Public Delegate Function QueryClientCertificateCallback(connection As LdapConnection, trustedCAs As Byte()()) As X509Certificate
Parâmetros
- connection
- LdapConnection
Um objeto LdapConnection que especifica a conexão.A LdapConnection object that specifies the connection.
- trustedCAs
- Byte[][]
Uma matriz de matrizes Byte que especifica as ACs (autoridades de certificação) confiáveis.An array of Byte arrays that specifies the trusted certification authorities (CAs).
Valor Retornado
A função de retorno de chamada padrão usada para verificar os certificados do cliente ao estabelecer uma conexão SSL.The default callback function used to specify the client certificates while establishing an SSL connection.
Métodos de Extensão
| GetMethodInfo(Delegate) |
Obtém um objeto que representa o método representado pelo delegado especificado.Gets an object that represents the method represented by the specified delegate. |