AuthenticationTagMismatchException Konstruktorer
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Överlagringar
| Name | Description |
|---|---|
| AuthenticationTagMismatchException() |
Initierar en ny instans av AuthenticationTagMismatchException klassen med standardegenskaper. |
| AuthenticationTagMismatchException(String) |
Initierar en ny instans av AuthenticationTagMismatchException klassen med ett angivet felmeddelande. |
| AuthenticationTagMismatchException(String, Exception) |
Initierar en ny instans av AuthenticationTagMismatchException klassen med ett angivet felmeddelande och en referens till det inre undantaget som är orsaken till det här undantaget. |
AuthenticationTagMismatchException()
Initierar en ny instans av AuthenticationTagMismatchException klassen med standardegenskaper.
public:
AuthenticationTagMismatchException();
public AuthenticationTagMismatchException();
Public Sub New ()
Gäller för
AuthenticationTagMismatchException(String)
Initierar en ny instans av AuthenticationTagMismatchException klassen med ett angivet felmeddelande.
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)
Parametrar
- message
- String
Felmeddelandet som förklarar orsaken till undantaget.
Gäller för
AuthenticationTagMismatchException(String, Exception)
Initierar en ny instans av AuthenticationTagMismatchException klassen med ett angivet felmeddelande och en referens till det inre undantaget som är orsaken till det här undantaget.
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)
Parametrar
- message
- String
Felmeddelandet som förklarar orsaken till undantaget.
- inner
- Exception
Undantaget som är orsaken till det aktuella undantaget. Om parametern inte nullär genereras det aktuella undantaget i ett catch-block som hanterar det inre undantaget.