TlsOperationException Constructeurs

Définition

Le constructeur TlsOperationException() crée une instance de la classe TlsOperationException .

Surcharges

TlsOperationException()

Le constructeur TlsOperationException() crée une instance de la classe TlsOperationException .

TlsOperationException(DirectoryResponse)

Le constructeur TlsOperationException(DirectoryResponse) crée une instance de la classe TlsOperationException à l'aide de la réponse spécifiée.

TlsOperationException(String)

Le constructeur TlsOperationException(String) crée une instance de la classe TlsOperationException à l'aide du message spécifié.

TlsOperationException(DirectoryResponse, String)

Le constructeur TlsOperationException(DirectoryResponse, String) crée une instance de la classe TlsOperationException à l'aide de la réponse et du message spécifiés.

TlsOperationException(SerializationInfo, StreamingContext)
Obsolète.

Le constructeur TlsOperationException(SerializationInfo, StreamingContext) crée une instance de la classe TlsOperationException à l'aide des données de sérialisation et du contexte de diffusion en continu spécifiés.

TlsOperationException(String, Exception)

Le constructeur TlsOperationException(String, Exception) crée une instance de la classe TlsOperationException à l'aide du message et de l'exception interne spécifiés.

TlsOperationException(DirectoryResponse, String, Exception)

Le constructeur TlsOperationException(DirectoryResponse, String, Exception) crée une instance de la classe TlsOperationException à l'aide du message, de la réponse et de l'exception interne spécifiés.

TlsOperationException()

Source:
LdapException.cs
Source:
LdapException.cs
Source:
LdapException.cs

Le constructeur TlsOperationException() crée une instance de la classe TlsOperationException .

public:
 TlsOperationException();
public TlsOperationException ();
Public Sub New ()

S’applique à

TlsOperationException(DirectoryResponse)

Source:
LdapException.cs
Source:
LdapException.cs
Source:
LdapException.cs

Le constructeur TlsOperationException(DirectoryResponse) crée une instance de la classe TlsOperationException à l'aide de la réponse spécifiée.

public:
 TlsOperationException(System::DirectoryServices::Protocols::DirectoryResponse ^ response);
public TlsOperationException (System.DirectoryServices.Protocols.DirectoryResponse response);
new System.DirectoryServices.Protocols.TlsOperationException : System.DirectoryServices.Protocols.DirectoryResponse -> System.DirectoryServices.Protocols.TlsOperationException
Public Sub New (response As DirectoryResponse)

Paramètres

response
DirectoryResponse

Objet DirectoryResponse retourné par le serveur.

S’applique à

TlsOperationException(String)

Source:
LdapException.cs
Source:
LdapException.cs
Source:
LdapException.cs

Le constructeur TlsOperationException(String) crée une instance de la classe TlsOperationException à l'aide du message spécifié.

public:
 TlsOperationException(System::String ^ message);
public TlsOperationException (string message);
new System.DirectoryServices.Protocols.TlsOperationException : string -> System.DirectoryServices.Protocols.TlsOperationException
Public Sub New (message As String)

Paramètres

message
String

Message affiché au client quand l’exception se produit.

S’applique à

TlsOperationException(DirectoryResponse, String)

Source:
LdapException.cs
Source:
LdapException.cs
Source:
LdapException.cs

Le constructeur TlsOperationException(DirectoryResponse, String) crée une instance de la classe TlsOperationException à l'aide de la réponse et du message spécifiés.

public:
 TlsOperationException(System::DirectoryServices::Protocols::DirectoryResponse ^ response, System::String ^ message);
public TlsOperationException (System.DirectoryServices.Protocols.DirectoryResponse response, string message);
new System.DirectoryServices.Protocols.TlsOperationException : System.DirectoryServices.Protocols.DirectoryResponse * string -> System.DirectoryServices.Protocols.TlsOperationException
Public Sub New (response As DirectoryResponse, message As String)

Paramètres

response
DirectoryResponse

Objet DirectoryResponse retourné par le serveur.

message
String

Message affiché au client quand l’exception se produit.

S’applique à

TlsOperationException(SerializationInfo, StreamingContext)

Source:
LdapException.cs
Source:
LdapException.cs
Source:
LdapException.cs

Attention

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

Le constructeur TlsOperationException(SerializationInfo, StreamingContext) crée une instance de la classe TlsOperationException à l'aide des données de sérialisation et du contexte de diffusion en continu spécifiés.

protected:
 TlsOperationException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected TlsOperationException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected TlsOperationException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.DirectoryServices.Protocols.TlsOperationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.Protocols.TlsOperationException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.DirectoryServices.Protocols.TlsOperationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.Protocols.TlsOperationException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Paramètres

info
SerializationInfo

Données nécessaires pour sérialiser le paramètre.

context
StreamingContext

Source et destination du flux sérialisé associé au paramètre.

Attributs

S’applique à

TlsOperationException(String, Exception)

Source:
LdapException.cs
Source:
LdapException.cs
Source:
LdapException.cs

Le constructeur TlsOperationException(String, Exception) crée une instance de la classe TlsOperationException à l'aide du message et de l'exception interne spécifiés.

public:
 TlsOperationException(System::String ^ message, Exception ^ inner);
public TlsOperationException (string message, Exception inner);
new System.DirectoryServices.Protocols.TlsOperationException : string * Exception -> System.DirectoryServices.Protocols.TlsOperationException
Public Sub New (message As String, inner As Exception)

Paramètres

message
String

Message affiché au client quand l’exception se produit.

inner
Exception

InnerException, le cas échéant, qui a levé l'exception.

S’applique à

TlsOperationException(DirectoryResponse, String, Exception)

Source:
LdapException.cs
Source:
LdapException.cs
Source:
LdapException.cs

Le constructeur TlsOperationException(DirectoryResponse, String, Exception) crée une instance de la classe TlsOperationException à l'aide du message, de la réponse et de l'exception interne spécifiés.

public:
 TlsOperationException(System::DirectoryServices::Protocols::DirectoryResponse ^ response, System::String ^ message, Exception ^ inner);
public TlsOperationException (System.DirectoryServices.Protocols.DirectoryResponse response, string message, Exception inner);
new System.DirectoryServices.Protocols.TlsOperationException : System.DirectoryServices.Protocols.DirectoryResponse * string * Exception -> System.DirectoryServices.Protocols.TlsOperationException
Public Sub New (response As DirectoryResponse, message As String, inner As Exception)

Paramètres

response
DirectoryResponse

Objet DirectoryResponse retourné par le serveur.

message
String

Message affiché au client quand l’exception se produit.

inner
Exception

InnerException, le cas échéant, qui a levé l'exception.

S’applique à