CustomAttributeFormatException Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inizializza una nuova istanza della classe CustomAttributeFormatException.
Overload
CustomAttributeFormatException() |
Inizializza una nuova istanza della classe CustomAttributeFormatException con le proprietà predefinite. |
CustomAttributeFormatException(String) |
Inizializza una nuova istanza della classe CustomAttributeFormatException con il messaggio specificato. |
CustomAttributeFormatException(SerializationInfo, StreamingContext) |
Obsoleti.
Inizializza una nuova istanza della classe CustomAttributeFormatException con le informazioni di serializzazione e di contesto specificate. |
CustomAttributeFormatException(String, Exception) |
Inizializza una nuova istanza della classe CustomAttributeFormatException con un messaggio di errore specificato e un riferimento all'eccezione interna che è la causa dell'eccezione corrente. |
CustomAttributeFormatException()
Inizializza una nuova istanza della classe CustomAttributeFormatException con le proprietà predefinite.
public:
CustomAttributeFormatException();
public CustomAttributeFormatException ();
Public Sub New ()
Commenti
Questo costruttore inizializza un'istanza di CustomAttributeFormatException
con una stringa di messaggio vuota e l'eccezione della causa radice impostata su null
.
Questo costruttore imposta le proprietà dell'oggetto Exception
come indicato di seguito:
Proprietà | Valore |
---|---|
InnerException | Null |
Message | Stringa vuota (""). |
Si applica a
CustomAttributeFormatException(String)
Inizializza una nuova istanza della classe CustomAttributeFormatException con il messaggio specificato.
public:
CustomAttributeFormatException(System::String ^ message);
public CustomAttributeFormatException (string? message);
public CustomAttributeFormatException (string message);
new System.Reflection.CustomAttributeFormatException : string -> System.Reflection.CustomAttributeFormatException
Public Sub New (message As String)
Parametri
- message
- String
Messaggio che indica il motivo per il quale è stata generata questa eccezione.
Commenti
Questo costruttore imposta le proprietà dell'oggetto Exception come indicato di seguito:
Proprietà | Valore |
---|---|
InnerException | null |
Vedi anche
Si applica a
CustomAttributeFormatException(SerializationInfo, StreamingContext)
Attenzione
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Inizializza una nuova istanza della classe CustomAttributeFormatException con le informazioni di serializzazione e di contesto specificate.
protected:
CustomAttributeFormatException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected CustomAttributeFormatException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected CustomAttributeFormatException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Reflection.CustomAttributeFormatException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Reflection.CustomAttributeFormatException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Reflection.CustomAttributeFormatException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Reflection.CustomAttributeFormatException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parametri
- info
- SerializationInfo
Dati per serializzare o deserializzare l'attributo personalizzato.
- context
- StreamingContext
Origine e destinazione per l'attributo personalizzato.
- Attributi
Si applica a
CustomAttributeFormatException(String, Exception)
Inizializza una nuova istanza della classe CustomAttributeFormatException con un messaggio di errore specificato e un riferimento all'eccezione interna che è la causa dell'eccezione corrente.
public:
CustomAttributeFormatException(System::String ^ message, Exception ^ inner);
public CustomAttributeFormatException (string? message, Exception? inner);
public CustomAttributeFormatException (string message, Exception inner);
new System.Reflection.CustomAttributeFormatException : string * Exception -> System.Reflection.CustomAttributeFormatException
Public Sub New (message As String, inner As Exception)
Parametri
- message
- String
Messaggio di errore in cui viene indicato il motivo dell'eccezione.
- inner
- Exception
Eccezione che ha determinato l'eccezione corrente. Se il parametro inner
non è null
, l'eccezione corrente viene generata in un blocco catch
in cui viene gestita l'eccezione interna.
Commenti
Un'eccezione generata come risultato diretto di un'eccezione precedente deve includere un riferimento all'eccezione precedente nella proprietà InnerException. La proprietà InnerException restituisce lo stesso valore passato nel costruttore oppure il valore null
se la proprietà InnerException non fornisce al costruttore il valore dell'eccezione interna.
Nella tabella seguente vengono illustrati i valori di proprietà iniziali per un'istanza di CustomAttributeFormatException.
Proprietà | Valore |
---|---|
InnerException | Eccezione inner . |
Message | Stringa del messaggio di errore. |