Freigeben über


InstanceNotReadyException Konstruktoren

Definition

Initialisiert eine Instanz der InstanceNotReadyException-Klasse.

Überlädt

InstanceNotReadyException()

Initialisiert eine Instanz der InstanceNotReadyException-Klasse.

InstanceNotReadyException(String)

Initialisiert eine Instanz der InstanceNotReadyException-Klasse mithilfe der Fehlermeldung.

InstanceNotReadyException(SerializationInfo, StreamingContext)

Initialisiert eine Instanz der InstanceNotReadyException-Klasse mit serialisierten Daten.

InstanceNotReadyException(String, Exception)

Initialisiert eine Instanz der InstanceNotReadyException-Klasse mithilfe der Fehlermeldung und der Informationen zur inneren Ausnahme.

InstanceNotReadyException(XName, Guid)

Initialisiert eine Instanz der InstanceNotReadyException-Klasse mithilfe des XName (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 mithilfe des XName (Kombination aus Namespace und Name) des Befehls, der ID der Zielinstanz, für die der Befehl ausgeführt wurde, sowie der Informationen zu inneren Ausnahme.

InstanceNotReadyException(XName, Guid, String, Exception)

Initialisiert eine Instanz der InstanceNotReadyException-Klasse unter Verwendung des XName (Kombination aus Namespace und Name) des Befehls, der ID der Zielinstanz, für die der Befehl ausgeführt wurde, der Fehlermeldung, aus der der Grund für die Ausnahme hervorgeht, und der 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 InstanceNotReadyException-Klasse mithilfe der 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 Kontextinformationen zur Quelle bzw. zum Ziel.

Attribute

Gilt für:

InstanceNotReadyException(String, Exception)

Initialisiert eine Instanz der InstanceNotReadyException-Klasse mithilfe der Fehlermeldung und der Informationen zur inneren Ausnahme.

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 mithilfe des XName (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 (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 mithilfe des XName (Kombination aus Namespace und Name) des Befehls, der ID der Zielinstanz, für die der Befehl ausgeführt wurde, sowie der Informationen zu inneren Ausnahme.

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 (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 unter Verwendung des XName (Kombination aus Namespace und Name) des Befehls, der ID der Zielinstanz, für die der Befehl ausgeführt wurde, der Fehlermeldung, aus der der Grund für die Ausnahme hervorgeht, und der 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 (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.

Gilt für: