Partager via


NoMatchingPrincipalException Constructeurs

Définition

Instancie une nouvelle instance de la classe NoMatchingPrincipalException.

Surcharges

NoMatchingPrincipalException()

Instancie une nouvelle instance de la classe NoMatchingPrincipalException.

NoMatchingPrincipalException(String)

Instancie une nouvelle instance de la classe NoMatchingPrincipalException avec le message d'erreur spécifié.

NoMatchingPrincipalException(SerializationInfo, StreamingContext)
Obsolète.

Initialise une nouvelle instance de la classe NoMatchingPrincipalException à partir des instances SerializationInfo et StreamingContext spécifiées.

NoMatchingPrincipalException(String, Exception)

Instancie une nouvelle instance de la classe NoMatchingPrincipalException avec le message d'erreur et l'exception imbriquée spécifiés.

NoMatchingPrincipalException()

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

Instancie une nouvelle instance de la classe NoMatchingPrincipalException.

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

Remarques

Le constructeur sans paramètre initialise une nouvelle instance de la NoMatchingPrincipalException classe . La Message propriété est initialisée dans un message fourni par le système qui décrit l’erreur. Ce message prend en compte la culture système en cours. La propriété InnerException est initialisée à null.

S’applique à

NoMatchingPrincipalException(String)

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

Instancie une nouvelle instance de la classe NoMatchingPrincipalException avec le message d'erreur spécifié.

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

Paramètres

message
String

Texte du message d'erreur.

Remarques

Le NoMatchingPrincipalException instance est initialisé avec la Message propriété définie sur la valeur de message. Si message a la valeur null, la Message propriété est initialisée dans un message fourni par le système.

S’applique à

NoMatchingPrincipalException(SerializationInfo, StreamingContext)

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

Attention

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

Initialise une nouvelle instance de la classe NoMatchingPrincipalException à partir des instances SerializationInfo et StreamingContext spécifiées.

protected:
 NoMatchingPrincipalException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected NoMatchingPrincipalException (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 NoMatchingPrincipalException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.DirectoryServices.AccountManagement.NoMatchingPrincipalException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.NoMatchingPrincipalException
[<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.AccountManagement.NoMatchingPrincipalException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.NoMatchingPrincipalException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Paramètres

info
SerializationInfo

SerializationInfo qui contient les informations requises pour sérialiser le nouveau NoMatchingPrincipalException.

context
StreamingContext

StreamingContext qui contient la source du flux sérialisé associé au nouveau NoMatchingPrincipalException.

Attributs

S’applique à

NoMatchingPrincipalException(String, Exception)

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

Instancie une nouvelle instance de la classe NoMatchingPrincipalException avec le message d'erreur et l'exception imbriquée spécifiés.

public:
 NoMatchingPrincipalException(System::String ^ message, Exception ^ innerException);
public NoMatchingPrincipalException (string message, Exception innerException);
new System.DirectoryServices.AccountManagement.NoMatchingPrincipalException : string * Exception -> System.DirectoryServices.AccountManagement.NoMatchingPrincipalException
Public Sub New (message As String, innerException As Exception)

Paramètres

message
String

Texte du message.

innerException
Exception

Une exception imbriquée.

Remarques

Le NoMatchingPrincipalException instance est initialisé avec la Message propriété définie sur la valeur de message et la InnerException propriété définie sur la valeur de innerException. Si message a la valeur null, la Message propriété est initialisée dans un message fourni par le système. est InnerException initialisé en null.

S’applique à