XamlInternalException Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci XamlInternalException třídy.
Přetížení
XamlInternalException() |
Inicializuje novou instanci XamlInternalException třídy se systémem dodanou zprávu, která popisuje chybu. |
XamlInternalException(String) |
Inicializuje novou instanci XamlInternalException třídy se zadanou zprávou, která popisuje chybu. |
XamlInternalException(SerializationInfo, StreamingContext) |
Inicializuje novou instanci třídy XamlInternalException se serializovanými daty. |
XamlInternalException(String, Exception) |
Inicializuje novou instanci XamlInternalException třídy se zadanou chybovou zprávou a odkazem na vnitřní výjimku, která je příčinou této výjimky. |
XamlInternalException()
Inicializuje novou instanci XamlInternalException třídy se systémem dodanou zprávu, která popisuje chybu.
public:
XamlInternalException();
public XamlInternalException ();
Public Sub New ()
Platí pro
XamlInternalException(String)
Inicializuje novou instanci XamlInternalException třídy se zadanou zprávou, která popisuje chybu.
public:
XamlInternalException(System::String ^ message);
public XamlInternalException (string message);
new System.Xaml.XamlInternalException : string -> System.Xaml.XamlInternalException
Public Sub New (message As String)
Parametry
- message
- String
Zpráva, která popisuje výjimku
Platí pro
XamlInternalException(SerializationInfo, StreamingContext)
Inicializuje novou instanci třídy XamlInternalException se serializovanými daty.
protected:
XamlInternalException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected XamlInternalException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Xaml.XamlInternalException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xaml.XamlInternalException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parametry
- info
- SerializationInfo
Objekt, který uchovává serializovaná data objektu.
- context
- StreamingContext
Kontextové informace o zdroji nebo cíli
Platí pro
XamlInternalException(String, Exception)
Inicializuje novou instanci XamlInternalException třídy se zadanou chybovou zprávou a odkazem na vnitřní výjimku, která je příčinou této výjimky.
public:
XamlInternalException(System::String ^ message, Exception ^ innerException);
public XamlInternalException (string message, Exception innerException);
new System.Xaml.XamlInternalException : string * Exception -> System.Xaml.XamlInternalException
Public Sub New (message As String, innerException As Exception)
Parametry
- message
- String
Zpráva, která popisuje výjimku
- innerException
- Exception
Výjimka, která je příčinou aktuální výjimky Pokud parametr innerException
není null
, aktuální výjimka je vyvolána v catch
bloku, který zpracovává vnitřní výjimku.