InstanceNotReadyException 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.
Initialisiert eine Instanz der InstanceNotReadyException Klasse.
Überlädt
| Name | Beschreibung |
|---|---|
| InstanceNotReadyException() |
Initialisiert eine Instanz der InstanceNotReadyException Klasse. |
| InstanceNotReadyException(String) |
Initialisiert eine Instanz der Klasse mithilfe der InstanceNotReadyException Fehlermeldung. |
| InstanceNotReadyException(SerializationInfo, StreamingContext) |
Initialisiert eine Instanz der InstanceNotReadyException Klasse mit serialisierten Daten. |
| InstanceNotReadyException(String, Exception) |
Initialisiert eine Instanz der Klasse mithilfe der InstanceNotReadyException Fehlermeldung und der inneren Ausnahmeinformationen. |
| InstanceNotReadyException(XName, Guid) |
Initialisiert eine Instanz der InstanceNotReadyException Klasse mit dem XName (der Kombination aus Namespace und Name) des Befehls und der ID der Zielinstanz, für die der Befehl ausgeführt wurde. |
| InstanceNotReadyException(XName, Guid, Exception) |
Initialisiert eine Instanz der InstanceNotReadyException Klasse mit dem XName (der Kombination aus Namespace und Name) des Befehls, der ID der Zielinstanz, für die der Befehl ausgeführt wurde, und den inneren Ausnahmeinformationen. |
| InstanceNotReadyException(XName, Guid, String, Exception) |
Initialisiert eine Instanz der InstanceNotReadyException Klasse mit dem XName (der Kombination aus Namespace und Name) des Befehls und der ID der Zielinstanz, für die der Befehl ausgeführt wurde, fehlermeldung, die den Grund für die Ausnahme erklärt, und die Ausnahme, die die aktuelle Ausnahme verursacht hat. |
InstanceNotReadyException()
Initialisiert eine Instanz der InstanceNotReadyException Klasse.
public:
InstanceNotReadyException();
public InstanceNotReadyException();
Public Sub New ()
Gilt für:
InstanceNotReadyException(String)
Initialisiert eine Instanz der Klasse mithilfe der InstanceNotReadyException Fehlermeldung.
public:
InstanceNotReadyException(System::String ^ message);
public InstanceNotReadyException(string message);
new System.Runtime.DurableInstancing.InstanceNotReadyException : string -> System.Runtime.DurableInstancing.InstanceNotReadyException
Public Sub New (message As String)
Parameter
- message
- String
Der Grund für die Ausnahme.
Gilt für:
InstanceNotReadyException(SerializationInfo, StreamingContext)
Initialisiert eine Instanz der InstanceNotReadyException Klasse mit serialisierten Daten.
protected:
InstanceNotReadyException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
[System.Security.SecurityCritical]
protected InstanceNotReadyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[<System.Security.SecurityCritical>]
new System.Runtime.DurableInstancing.InstanceNotReadyException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Runtime.DurableInstancing.InstanceNotReadyException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameter
- info
- SerializationInfo
Die Informationen zur aktuellen Ausnahme.
- context
- StreamingContext
Die kontextbezogenen Informationen zur Quelle oder zum Ziel.
- Attribute
Gilt für:
InstanceNotReadyException(String, Exception)
Initialisiert eine Instanz der Klasse mithilfe der InstanceNotReadyException Fehlermeldung und der inneren Ausnahmeinformationen.
public:
InstanceNotReadyException(System::String ^ message, Exception ^ innerException);
public InstanceNotReadyException(string message, Exception innerException);
new System.Runtime.DurableInstancing.InstanceNotReadyException : string * Exception -> System.Runtime.DurableInstancing.InstanceNotReadyException
Public Sub New (message As String, innerException As Exception)
Parameter
- message
- String
Der Grund für die Ausnahme.
- innerException
- Exception
Die Ausnahme, die die aktuelle Ausnahme verursacht hat.
Gilt für:
InstanceNotReadyException(XName, Guid)
Initialisiert eine Instanz der InstanceNotReadyException Klasse mit dem XName (der Kombination aus Namespace und Name) des Befehls und der ID der Zielinstanz, für die der Befehl ausgeführt wurde.
public:
InstanceNotReadyException(System::Xml::Linq::XName ^ commandName, Guid instanceId);
public InstanceNotReadyException(System.Xml.Linq.XName commandName, Guid instanceId);
new System.Runtime.DurableInstancing.InstanceNotReadyException : System.Xml.Linq.XName * Guid -> System.Runtime.DurableInstancing.InstanceNotReadyException
Public Sub New (commandName As XName, instanceId As Guid)
Parameter
- commandName
- XName
Der XName (die Kombination aus Namespace und Name) des Befehls.
- instanceId
- Guid
Die ID der Zielinstanz, für die der Befehl ausgeführt wurde.
Gilt für:
InstanceNotReadyException(XName, Guid, Exception)
Initialisiert eine Instanz der InstanceNotReadyException Klasse mit dem XName (der Kombination aus Namespace und Name) des Befehls, der ID der Zielinstanz, für die der Befehl ausgeführt wurde, und den inneren Ausnahmeinformationen.
public:
InstanceNotReadyException(System::Xml::Linq::XName ^ commandName, Guid instanceId, Exception ^ innerException);
public InstanceNotReadyException(System.Xml.Linq.XName commandName, Guid instanceId, Exception innerException);
new System.Runtime.DurableInstancing.InstanceNotReadyException : System.Xml.Linq.XName * Guid * Exception -> System.Runtime.DurableInstancing.InstanceNotReadyException
Public Sub New (commandName As XName, instanceId As Guid, innerException As Exception)
Parameter
- commandName
- XName
Der XName (die Kombination aus Namespace und Name) des Befehls.
- instanceId
- Guid
Die ID der Zielinstanz, für die der Befehl ausgeführt wurde.
- innerException
- Exception
Die Ausnahme, die die aktuelle Ausnahme verursacht hat.
Gilt für:
InstanceNotReadyException(XName, Guid, String, Exception)
Initialisiert eine Instanz der InstanceNotReadyException Klasse mit dem XName (der Kombination aus Namespace und Name) des Befehls und der ID der Zielinstanz, für die der Befehl ausgeführt wurde, fehlermeldung, die den Grund für die Ausnahme erklärt, und die Ausnahme, die die aktuelle Ausnahme verursacht hat.
public:
InstanceNotReadyException(System::Xml::Linq::XName ^ commandName, Guid instanceId, System::String ^ message, Exception ^ innerException);
public InstanceNotReadyException(System.Xml.Linq.XName commandName, Guid instanceId, string message, Exception innerException);
new System.Runtime.DurableInstancing.InstanceNotReadyException : System.Xml.Linq.XName * Guid * string * Exception -> System.Runtime.DurableInstancing.InstanceNotReadyException
Public Sub New (commandName As XName, instanceId As Guid, message As String, innerException As Exception)
Parameter
- commandName
- XName
Der XName (die Kombination aus Namespace und Name) des Befehls.
- instanceId
- Guid
Die ID der Zielinstanz, für die der Befehl ausgeführt wurde.
- message
- String
Der Grund für die Ausnahme.
- innerException
- Exception
Die Ausnahme, die die aktuelle Ausnahme verursacht hat.