AuthenticationTagMismatchException Constructeurs

Définition

Surcharges

Nom Description
AuthenticationTagMismatchException()

Initialise une nouvelle instance de la AuthenticationTagMismatchException classe avec des propriétés par défaut.

AuthenticationTagMismatchException(String)

Initialise une nouvelle instance de la AuthenticationTagMismatchException classe avec un message d’erreur spécifié.

AuthenticationTagMismatchException(String, Exception)

Initialise une nouvelle instance de la AuthenticationTagMismatchException classe avec un message d’erreur spécifié et une référence à l’exception interne qui est la cause de cette exception.

AuthenticationTagMismatchException()

Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs

Initialise une nouvelle instance de la AuthenticationTagMismatchException classe avec des propriétés par défaut.

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

S’applique à

AuthenticationTagMismatchException(String)

Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs

Initialise une nouvelle instance de la AuthenticationTagMismatchException classe avec un message d’erreur spécifié.

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)

Paramètres

message
String

Message d’erreur qui explique la raison de l’exception.

S’applique à

AuthenticationTagMismatchException(String, Exception)

Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs

Initialise une nouvelle instance de la AuthenticationTagMismatchException classe avec un message d’erreur spécifié et une référence à l’exception interne qui est la cause de cette exception.

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)

Paramètres

message
String

Message d’erreur qui explique la raison de l’exception.

inner
Exception

Exception qui est la cause de l’exception actuelle. Si le paramètre n’est pas null, l’exception actuelle est levée dans un bloc catch qui gère l’exception interne.

S’applique à