Partager via


InstanceKeyNotReadyException Constructeurs

Définition

Initialise une instance de la classe InstanceKeyNotReadyException.

Surcharges

InstanceKeyNotReadyException()

Initialise une instance de la classe InstanceKeyNotReadyException.

InstanceKeyNotReadyException(String)

Initialise une instance de la classe InstanceKeyNotReadyException à l'aide du message d'erreur.

InstanceKeyNotReadyException(SerializationInfo, StreamingContext)

Initialise une instance de la classe InstanceKeyNotReadyException avec les données sérialisées.

InstanceKeyNotReadyException(String, Exception)

Initialise une instance de la classe InstanceKeyNotReadyException à l'aide du message d'erreur et des informations sur l'exception interne.

InstanceKeyNotReadyException(XName, InstanceKey)

Initialise une instance de la classe InstanceKeyNotReadyException à l'aide du nom de la commande et des informations sur la clé d'instance.

InstanceKeyNotReadyException(XName, InstanceKey, Exception)

Initialise une instance de la classe InstanceKeyNotReadyException à l'aide du nom de la commande, des informations sur la clé d'instance et de l'exception interne (exception à l'origine de l'exception actuelle) passés comme paramètres.

InstanceKeyNotReadyException(XName, Guid, InstanceKey, String, Exception)

Initialise une instance de la classe InstanceKeyNotReadyException à l'aide du nom de la commande, de l'ID de l'instance cible sur laquelle la commande a été exécutée, des informations sur la clé d'instance, du message d'erreur qui explique la raison de l'exception, et de l'exception interne (exception à l'origine de l'exception actuelle).

InstanceKeyNotReadyException()

Initialise une instance de la classe InstanceKeyNotReadyException.

public:
 InstanceKeyNotReadyException();
public InstanceKeyNotReadyException ();
Public Sub New ()

S’applique à

InstanceKeyNotReadyException(String)

Initialise une instance de la classe InstanceKeyNotReadyException à l'aide du message d'erreur.

public:
 InstanceKeyNotReadyException(System::String ^ message);
public InstanceKeyNotReadyException (string message);
new System.Runtime.DurableInstancing.InstanceKeyNotReadyException : string -> System.Runtime.DurableInstancing.InstanceKeyNotReadyException
Public Sub New (message As String)

Paramètres

message
String

Raison de l'exception.

S’applique à

InstanceKeyNotReadyException(SerializationInfo, StreamingContext)

Initialise une instance de la classe InstanceKeyNotReadyException avec les données sérialisées.

protected:
 InstanceKeyNotReadyException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
[System.Security.SecurityCritical]
protected InstanceKeyNotReadyException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[<System.Security.SecurityCritical>]
new System.Runtime.DurableInstancing.InstanceKeyNotReadyException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Runtime.DurableInstancing.InstanceKeyNotReadyException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Paramètres

info
SerializationInfo

Informations sur l'exception actuelle.

context
StreamingContext

Informations contextuelles sur la source ou la destination.

Attributs

S’applique à

InstanceKeyNotReadyException(String, Exception)

Initialise une instance de la classe InstanceKeyNotReadyException à l'aide du message d'erreur et des informations sur l'exception interne.

public:
 InstanceKeyNotReadyException(System::String ^ message, Exception ^ innerException);
public InstanceKeyNotReadyException (string message, Exception innerException);
new System.Runtime.DurableInstancing.InstanceKeyNotReadyException : string * Exception -> System.Runtime.DurableInstancing.InstanceKeyNotReadyException
Public Sub New (message As String, innerException As Exception)

Paramètres

message
String

Raison de l'exception.

innerException
Exception

Exception à l'origine de l'exception actuelle.

S’applique à

InstanceKeyNotReadyException(XName, InstanceKey)

Initialise une instance de la classe InstanceKeyNotReadyException à l'aide du nom de la commande et des informations sur la clé d'instance.

public:
 InstanceKeyNotReadyException(System::Xml::Linq::XName ^ commandName, System::Runtime::DurableInstancing::InstanceKey ^ instanceKey);
public InstanceKeyNotReadyException (System.Xml.Linq.XName commandName, System.Runtime.DurableInstancing.InstanceKey instanceKey);
new System.Runtime.DurableInstancing.InstanceKeyNotReadyException : System.Xml.Linq.XName * System.Runtime.DurableInstancing.InstanceKey -> System.Runtime.DurableInstancing.InstanceKeyNotReadyException
Public Sub New (commandName As XName, instanceKey As InstanceKey)

Paramètres

commandName
XName

XName (combinaison de l'espace de noms et du nom) de la commande.

instanceKey
InstanceKey

Informations sur la clé d'instance.

S’applique à

InstanceKeyNotReadyException(XName, InstanceKey, Exception)

Initialise une instance de la classe InstanceKeyNotReadyException à l'aide du nom de la commande, des informations sur la clé d'instance et de l'exception interne (exception à l'origine de l'exception actuelle) passés comme paramètres.

public:
 InstanceKeyNotReadyException(System::Xml::Linq::XName ^ commandName, System::Runtime::DurableInstancing::InstanceKey ^ instanceKey, Exception ^ innerException);
public InstanceKeyNotReadyException (System.Xml.Linq.XName commandName, System.Runtime.DurableInstancing.InstanceKey instanceKey, Exception innerException);
new System.Runtime.DurableInstancing.InstanceKeyNotReadyException : System.Xml.Linq.XName * System.Runtime.DurableInstancing.InstanceKey * Exception -> System.Runtime.DurableInstancing.InstanceKeyNotReadyException
Public Sub New (commandName As XName, instanceKey As InstanceKey, innerException As Exception)

Paramètres

commandName
XName

XName (combinaison de l'espace de noms et du nom) de la commande.

instanceKey
InstanceKey

Informations sur la clé d'instance.

innerException
Exception

Exception à l'origine de l'exception actuelle.

S’applique à

InstanceKeyNotReadyException(XName, Guid, InstanceKey, String, Exception)

Initialise une instance de la classe InstanceKeyNotReadyException à l'aide du nom de la commande, de l'ID de l'instance cible sur laquelle la commande a été exécutée, des informations sur la clé d'instance, du message d'erreur qui explique la raison de l'exception, et de l'exception interne (exception à l'origine de l'exception actuelle).

public:
 InstanceKeyNotReadyException(System::Xml::Linq::XName ^ commandName, Guid instanceId, System::Runtime::DurableInstancing::InstanceKey ^ instanceKey, System::String ^ message, Exception ^ innerException);
public InstanceKeyNotReadyException (System.Xml.Linq.XName commandName, Guid instanceId, System.Runtime.DurableInstancing.InstanceKey instanceKey, string message, Exception innerException);
new System.Runtime.DurableInstancing.InstanceKeyNotReadyException : System.Xml.Linq.XName * Guid * System.Runtime.DurableInstancing.InstanceKey * string * Exception -> System.Runtime.DurableInstancing.InstanceKeyNotReadyException
Public Sub New (commandName As XName, instanceId As Guid, instanceKey As InstanceKey, message As String, innerException As Exception)

Paramètres

commandName
XName

XName (combinaison de l'espace de noms et du nom) de la commande.

instanceId
Guid

ID de l'instance sur laquelle la commande a été exécutée.

instanceKey
InstanceKey

Informations sur la clé d'instance.

message
String

Raison de l'exception.

innerException
Exception

Exception à l'origine de l'exception actuelle.

S’applique à