Partager via


AuthenticationTagMismatchException Constructeurs

Définition

Surcharges

AuthenticationTagMismatchException()

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

AuthenticationTagMismatchException(String)

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

AuthenticationTagMismatchException(String, Exception)

Initialise une nouvelle instance de la classe AuthenticationTagMismatchException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.

AuthenticationTagMismatchException()

Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs

Initialise une nouvelle instance de la classe AuthenticationTagMismatchException 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

Initialise une nouvelle instance de la classe AuthenticationTagMismatchException 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

Initialise une nouvelle instance de la classe AuthenticationTagMismatchException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué 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 ayant provoqué 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 à