InstanceNotReadyException Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une instance de la InstanceNotReadyException classe.
Surcharges
| Nom | Description |
|---|---|
| InstanceNotReadyException() |
Initialise une instance de la InstanceNotReadyException classe. |
| InstanceNotReadyException(String) |
Initialise une instance de la classe à l’aide InstanceNotReadyException du message d’erreur. |
| InstanceNotReadyException(SerializationInfo, StreamingContext) |
Initialise une instance de la InstanceNotReadyException classe avec des données sérialisées. |
| InstanceNotReadyException(String, Exception) |
Initialise une instance de la InstanceNotReadyException classe à l’aide du message d’erreur et des informations d’exception internes. |
| InstanceNotReadyException(XName, Guid) |
Initialise une instance de la InstanceNotReadyException classe à l’aide de XName (combinaison d’espace de noms et de nom) de la commande et de l’ID de l’instance cible sur laquelle la commande a été exécutée. |
| InstanceNotReadyException(XName, Guid, Exception) |
Initialise une instance de la InstanceNotReadyException classe à l’aide du XName (combinaison de l’espace de noms et du nom) de la commande, de l’ID de l’instance cible sur laquelle la commande a été exécutée et des informations d’exception internes. |
| InstanceNotReadyException(XName, Guid, String, Exception) |
Initialise une instance de la InstanceNotReadyException classe à l’aide du XName (combinaison de l’espace de noms et du nom) de la commande et de l’ID de l’instance cible sur laquelle la commande a été exécutée, message d’erreur qui explique la raison de l’exception et l’exception qui a provoqué l’exception actuelle. |
InstanceNotReadyException()
Initialise une instance de la InstanceNotReadyException classe.
public:
InstanceNotReadyException();
public InstanceNotReadyException();
Public Sub New ()
S’applique à
InstanceNotReadyException(String)
Initialise une instance de la classe à l’aide InstanceNotReadyException du message d’erreur.
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)
Paramètres
- message
- String
Raison de l’exception.
S’applique à
InstanceNotReadyException(SerializationInfo, StreamingContext)
Initialise une instance de la InstanceNotReadyException classe avec des données sérialisées.
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)
Paramètres
- info
- SerializationInfo
Informations sur l’exception actuelle.
- context
- StreamingContext
Informations contextuelles sur la source ou la destination.
- Attributs
S’applique à
InstanceNotReadyException(String, Exception)
Initialise une instance de la InstanceNotReadyException classe à l’aide du message d’erreur et des informations d’exception internes.
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)
Paramètres
- message
- String
Raison de l’exception.
- innerException
- Exception
Exception qui a provoqué l’exception actuelle.
S’applique à
InstanceNotReadyException(XName, Guid)
Initialise une instance de la InstanceNotReadyException classe à l’aide de XName (combinaison d’espace de noms et de nom) de la commande et de l’ID de l’instance cible sur laquelle la commande a été exécutée.
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)
Paramètres
- commandName
- XName
XName (combinaison d’espace de noms et de nom) de la commande.
- instanceId
- Guid
ID de l’instance cible sur laquelle la commande a été exécutée.
S’applique à
InstanceNotReadyException(XName, Guid, Exception)
Initialise une instance de la InstanceNotReadyException classe à l’aide du XName (combinaison de l’espace de noms et du nom) de la commande, de l’ID de l’instance cible sur laquelle la commande a été exécutée et des informations d’exception internes.
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)
Paramètres
- commandName
- XName
XName (combinaison d’espace de noms et de nom) de la commande.
- instanceId
- Guid
ID de l’instance cible sur laquelle la commande a été exécutée.
- innerException
- Exception
Exception qui a provoqué l’exception actuelle.
S’applique à
InstanceNotReadyException(XName, Guid, String, Exception)
Initialise une instance de la InstanceNotReadyException classe à l’aide du XName (combinaison de l’espace de noms et du nom) de la commande et de l’ID de l’instance cible sur laquelle la commande a été exécutée, message d’erreur qui explique la raison de l’exception et l’exception qui a provoqué l’exception actuelle.
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)
Paramètres
- commandName
- XName
XName (combinaison d’espace de noms et de nom) de la commande.
- instanceId
- Guid
ID de l’instance cible sur laquelle la commande a été exécutée.
- message
- String
Raison de l’exception.
- innerException
- Exception
Exception qui a provoqué l’exception actuelle.