Share via


AuthenticationTagMismatchException Konstruktoren

Definition

Überlädt

AuthenticationTagMismatchException()

Initialisiert eine neue Instanz der AuthenticationTagMismatchException-Klasse mit Standardeigenschaften.

AuthenticationTagMismatchException(String)

Initialisiert eine neue Instanz der AuthenticationTagMismatchException-Klasse mit einer angegebenen Fehlermeldung.

AuthenticationTagMismatchException(String, Exception)

Initialisiert eine neue Instanz der AuthenticationTagMismatchException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat.

AuthenticationTagMismatchException()

Quelle:
AuthenticationTagMismatchException.cs
Quelle:
AuthenticationTagMismatchException.cs

Initialisiert eine neue Instanz der AuthenticationTagMismatchException-Klasse mit Standardeigenschaften.

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

Gilt für:

AuthenticationTagMismatchException(String)

Quelle:
AuthenticationTagMismatchException.cs
Quelle:
AuthenticationTagMismatchException.cs

Initialisiert eine neue Instanz der AuthenticationTagMismatchException-Klasse mit einer angegebenen Fehlermeldung.

public:
 AuthenticationTagMismatchException(System::String ^ message);
public AuthenticationTagMismatchException (string? message);
new System.Security.Cryptography.AuthenticationTagMismatchException : string -> System.Security.Cryptography.AuthenticationTagMismatchException
Public Sub New (message As String)

Parameter

message
String

Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.

Gilt für:

AuthenticationTagMismatchException(String, Exception)

Quelle:
AuthenticationTagMismatchException.cs
Quelle:
AuthenticationTagMismatchException.cs

Initialisiert eine neue Instanz der AuthenticationTagMismatchException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat.

public:
 AuthenticationTagMismatchException(System::String ^ message, Exception ^ inner);
public AuthenticationTagMismatchException (string? message, Exception? inner);
new System.Security.Cryptography.AuthenticationTagMismatchException : string * Exception -> System.Security.Cryptography.AuthenticationTagMismatchException
Public Sub New (message As String, inner As Exception)

Parameter

message
String

Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.

inner
Exception

Die Ausnahme, die die Ursache der aktuellen Ausnahme ist. Wenn der Parameter nicht nullist, wird die aktuelle Ausnahme in einem Catch-Block ausgelöst, der die innere Ausnahme behandelt.

Gilt für: