SwitchExpressionException Konstruktory

Definice

Přetížení

SwitchExpressionException()

Inicializuje novou instanci SwitchExpressionException třídy.

SwitchExpressionException(Exception)

Inicializuje novou instanci SwitchExpressionException třídy se zadanou chybovou zprávou a odkazem na vnitřní výjimku, která je příčinou této výjimky.

SwitchExpressionException(Object)

Inicializuje novou instanci SwitchExpressionException třídy s nespotřebovanou hodnotou přepínače.

SwitchExpressionException(String)

Inicializuje novou instanci třídy SwitchExpressionException se zadanou zprávou.

SwitchExpressionException(String, Exception)

Inicializuje novou instanci SwitchExpressionException třídy se zadaným podrobným popisem a zadanou výjimkou.

SwitchExpressionException()

Zdroj:
SwitchExpressionException.cs
Zdroj:
SwitchExpressionException.cs
Zdroj:
SwitchExpressionException.cs

Inicializuje novou instanci SwitchExpressionException třídy.

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

Platí pro

SwitchExpressionException(Exception)

Zdroj:
SwitchExpressionException.cs
Zdroj:
SwitchExpressionException.cs
Zdroj:
SwitchExpressionException.cs

Inicializuje novou instanci SwitchExpressionException třídy se zadanou chybovou zprávou a odkazem na vnitřní výjimku, která je příčinou této výjimky.

public:
 SwitchExpressionException(Exception ^ innerException);
public SwitchExpressionException (Exception? innerException);
public SwitchExpressionException (Exception innerException);
new System.Runtime.CompilerServices.SwitchExpressionException : Exception -> System.Runtime.CompilerServices.SwitchExpressionException
Public Sub New (innerException As Exception)

Parametry

innerException
Exception

Výjimka, která je příčinou aktuální výjimky innerException Pokud parametr není null, aktuální výjimka je vyvolána v catch bloku, který zpracovává vnitřní výjimku.

Platí pro

SwitchExpressionException(Object)

Zdroj:
SwitchExpressionException.cs
Zdroj:
SwitchExpressionException.cs
Zdroj:
SwitchExpressionException.cs

Inicializuje novou instanci SwitchExpressionException třídy s nespotřebovanou hodnotou přepínače.

public:
 SwitchExpressionException(System::Object ^ unmatchedValue);
public SwitchExpressionException (object? unmatchedValue);
public SwitchExpressionException (object unmatchedValue);
new System.Runtime.CompilerServices.SwitchExpressionException : obj -> System.Runtime.CompilerServices.SwitchExpressionException
Public Sub New (unmatchedValue As Object)

Parametry

unmatchedValue
Object

Hodnota přepínače, která neodpovídá žádným případům přepínače.

Platí pro

SwitchExpressionException(String)

Zdroj:
SwitchExpressionException.cs
Zdroj:
SwitchExpressionException.cs
Zdroj:
SwitchExpressionException.cs

Inicializuje novou instanci třídy SwitchExpressionException se zadanou zprávou.

public:
 SwitchExpressionException(System::String ^ message);
public SwitchExpressionException (string? message);
public SwitchExpressionException (string message);
new System.Runtime.CompilerServices.SwitchExpressionException : string -> System.Runtime.CompilerServices.SwitchExpressionException
Public Sub New (message As String)

Parametry

message
String

Zpráva, která se má zobrazit koncovému uživateli.

Platí pro

SwitchExpressionException(String, Exception)

Zdroj:
SwitchExpressionException.cs
Zdroj:
SwitchExpressionException.cs
Zdroj:
SwitchExpressionException.cs

Inicializuje novou instanci SwitchExpressionException třídy se zadaným podrobným popisem a zadanou výjimkou.

public:
 SwitchExpressionException(System::String ^ message, Exception ^ innerException);
public SwitchExpressionException (string? message, Exception? innerException);
public SwitchExpressionException (string message, Exception innerException);
new System.Runtime.CompilerServices.SwitchExpressionException : string * Exception -> System.Runtime.CompilerServices.SwitchExpressionException
Public Sub New (message As String, innerException As Exception)

Parametry

message
String

Zpráva, která se má zobrazit koncovému uživateli.

innerException
Exception

Odkaz na vnitřní výjimku, která je příčinou této výjimky.

Platí pro