PropertyDescriptorNotFoundException Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
| PropertyDescriptorNotFoundException() |
Initialisiert eine neue Instanz der propertydescriptornotfoundexception-Klasse. |
| PropertyDescriptorNotFoundException(String) |
Initialisiert eine neue Instanz der propertydescriptornotfoundexception-Klasse mit einer angegebenen Fehlermeldung. |
| PropertyDescriptorNotFoundException(SerializationInfo, StreamingContext) |
Konstruktor für Serialisierungszwecke. |
| PropertyDescriptorNotFoundException(String, Exception) |
Initialisiert eine neue Instanz der propertydescriptornotfoundexception-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme verursacht hat. |
PropertyDescriptorNotFoundException()
Initialisiert eine neue Instanz der propertydescriptornotfoundexception-Klasse.
public:
PropertyDescriptorNotFoundException();
public PropertyDescriptorNotFoundException ();
Public Sub New ()
Gilt für
PropertyDescriptorNotFoundException(String)
Initialisiert eine neue Instanz der propertydescriptornotfoundexception-Klasse mit einer angegebenen Fehlermeldung.
public:
PropertyDescriptorNotFoundException(System::String ^ message);
public PropertyDescriptorNotFoundException (string message);
new Microsoft.VisualStudio.Modeling.Design.PropertyDescriptorNotFoundException : string -> Microsoft.VisualStudio.Modeling.Design.PropertyDescriptorNotFoundException
Public Sub New (message As String)
Parameter
- message
- String
Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.
Gilt für
PropertyDescriptorNotFoundException(SerializationInfo, StreamingContext)
Konstruktor für Serialisierungszwecke.
protected:
PropertyDescriptorNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PropertyDescriptorNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.VisualStudio.Modeling.Design.PropertyDescriptorNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.VisualStudio.Modeling.Design.PropertyDescriptorNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameter
- info
- SerializationInfo
- context
- StreamingContext
Gilt für
PropertyDescriptorNotFoundException(String, Exception)
Initialisiert eine neue Instanz der propertydescriptornotfoundexception-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme verursacht hat.
public:
PropertyDescriptorNotFoundException(System::String ^ message, Exception ^ innerException);
public PropertyDescriptorNotFoundException (string message, Exception innerException);
new Microsoft.VisualStudio.Modeling.Design.PropertyDescriptorNotFoundException : string * Exception -> Microsoft.VisualStudio.Modeling.Design.PropertyDescriptorNotFoundException
Public Sub New (message As String, innerException As Exception)
Parameter
- message
- String
Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.
- innerException
- Exception
Die Ausnahme, die die Ursache der aktuellen Ausnahme ist. Wenn es sich bei dem innerException-Parameter nicht um einen NULL-Verweis handelt, wird die aktuelle Ausnahme in einem Catch-Block ausgelöst, der die innere Ausnahme verarbeitet.