NoMatchingPrincipalException Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Instanziiert eine neue Instanz der NoMatchingPrincipalException-Klasse.
Überlädt
NoMatchingPrincipalException() |
Instanziiert eine neue Instanz der NoMatchingPrincipalException-Klasse. |
NoMatchingPrincipalException(String) |
Instanziiert eine neue Instanz der NoMatchingPrincipalException-Klasse mit der angegebenen Fehlermeldung. |
NoMatchingPrincipalException(SerializationInfo, StreamingContext) |
Veraltet.
Initialisiert eine neue Instanz der NoMatchingPrincipalException-Klasse aus der angegebenen SerializationInfo-Instanz und der StreamingContext-Instanz. |
NoMatchingPrincipalException(String, Exception) |
Instanziiert eine neue Instanz der NoMatchingPrincipalException-Klasse mit der angegebenen Fehlermeldung und der angegebenen geschachtelten Ausnahme. |
NoMatchingPrincipalException()
- Quelle:
- exceptions.cs
- Quelle:
- exceptions.cs
- Quelle:
- exceptions.cs
Instanziiert eine neue Instanz der NoMatchingPrincipalException-Klasse.
public:
NoMatchingPrincipalException();
public NoMatchingPrincipalException ();
Public Sub New ()
Hinweise
Der parameterlose Konstruktor initialisiert eine neue instance der NoMatchingPrincipalException -Klasse. Die Message -Eigenschaft wird mit einer vom System bereitgestellten Meldung initialisiert, die den Fehler beschreibt. Diese Meldung berücksichtigt die aktuelle Systemkultur. Die InnerException-Eigenschaft wird mit null
initialisiert.
Gilt für:
NoMatchingPrincipalException(String)
- Quelle:
- exceptions.cs
- Quelle:
- exceptions.cs
- Quelle:
- exceptions.cs
Instanziiert eine neue Instanz der NoMatchingPrincipalException-Klasse mit der angegebenen Fehlermeldung.
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)
Parameter
- message
- String
Der Text der Fehlermeldung.
Hinweise
Die NoMatchingPrincipalException instance wird initialisiert, wobei die Message -Eigenschaft auf den Wert von message
festgelegt ist. Wenn message
ist null
, wird die Message -Eigenschaft mit einer vom System bereitgestellten Nachricht initialisiert.
Gilt für:
NoMatchingPrincipalException(SerializationInfo, StreamingContext)
- Quelle:
- exceptions.cs
- Quelle:
- exceptions.cs
- Quelle:
- exceptions.cs
Achtung
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initialisiert eine neue Instanz der NoMatchingPrincipalException-Klasse aus der angegebenen SerializationInfo-Instanz und der StreamingContext-Instanz.
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)
Parameter
- info
- SerializationInfo
Eine SerializationInfo mit den zum Serialisieren der neuen NoMatchingPrincipalException erforderlichen Informationen.
- context
- StreamingContext
Ein StreamingContext mit der Quelle des serialisierten Streams, der der neuen NoMatchingPrincipalException zugeordnet ist.
- Attribute
Gilt für:
NoMatchingPrincipalException(String, Exception)
- Quelle:
- exceptions.cs
- Quelle:
- exceptions.cs
- Quelle:
- exceptions.cs
Instanziiert eine neue Instanz der NoMatchingPrincipalException-Klasse mit der angegebenen Fehlermeldung und der angegebenen geschachtelten Ausnahme.
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)
Parameter
- message
- String
Der Text der Meldung.
- innerException
- Exception
Eine geschachtelte Ausnahme.
Hinweise
Die NoMatchingPrincipalException instance wird initialisiert, wobei die Message -Eigenschaft auf den Wert von message
und die InnerException -Eigenschaft auf den Wert von innerException
festgelegt ist. Wenn message
ist null
, wird die Message -Eigenschaft mit einer vom System bereitgestellten Nachricht initialisiert. Wird InnerException mit null
initialisiert.