InstanceLockLostException Konstruktorer
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Initierar en instans av InstanceLockLostException klassen.
Överlagringar
| Name | Description |
|---|---|
| InstanceLockLostException() |
Initierar en instans av InstanceLockLostException klassen. |
| InstanceLockLostException(String) |
Initierar en instans av klassen med hjälp av InstanceLockLostException felmeddelandet. |
| InstanceLockLostException(SerializationInfo, StreamingContext) |
Initierar en instans av InstanceLockLostException klassen med serialiserade data. |
| InstanceLockLostException(String, Exception) |
Initierar en instans av klassen med hjälp av InstanceLockLostException felmeddelandet och den inre undantagsinformationen. |
| InstanceLockLostException(XName, Guid) |
Initierar en instans av InstanceLockLostException klassen med hjälp av XName (kombinationen av namnområde och namn) för kommandot och ID:t för målinstansen som kommandot kördes mot. |
| InstanceLockLostException(XName, Guid, Exception) |
Initierar en instans av InstanceLockLostException klassen med hjälp av XName (kombinationen av namnområde och namn) för kommandot, ID för målinstansen som kommandot kördes mot och den inre undantagsinformationen. |
| InstanceLockLostException(XName, Guid, String, Exception) |
Initierar en instans av InstanceLockLostException klassen med hjälp av XName (kombinationen av namnområde och namn) för kommandot, ID:t för målinstansen som kommandot kördes mot, felmeddelande som förklarar orsaken till undantaget och undantaget som orsakade det aktuella undantaget. |
InstanceLockLostException()
Initierar en instans av InstanceLockLostException klassen.
public:
InstanceLockLostException();
public InstanceLockLostException();
Public Sub New ()
Gäller för
InstanceLockLostException(String)
Initierar en instans av klassen med hjälp av InstanceLockLostException felmeddelandet.
public:
InstanceLockLostException(System::String ^ message);
public InstanceLockLostException(string message);
new System.Runtime.DurableInstancing.InstanceLockLostException : string -> System.Runtime.DurableInstancing.InstanceLockLostException
Public Sub New (message As String)
Parametrar
- message
- String
Orsaken till undantaget.
Gäller för
InstanceLockLostException(SerializationInfo, StreamingContext)
Initierar en instans av InstanceLockLostException klassen med serialiserade data.
protected:
InstanceLockLostException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
[System.Security.SecurityCritical]
protected InstanceLockLostException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[<System.Security.SecurityCritical>]
new System.Runtime.DurableInstancing.InstanceLockLostException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Runtime.DurableInstancing.InstanceLockLostException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parametrar
- info
- SerializationInfo
Information om det aktuella undantaget.
- context
- StreamingContext
Sammanhangsinformation om källan eller målet.
- Attribut
Gäller för
InstanceLockLostException(String, Exception)
Initierar en instans av klassen med hjälp av InstanceLockLostException felmeddelandet och den inre undantagsinformationen.
public:
InstanceLockLostException(System::String ^ message, Exception ^ innerException);
public InstanceLockLostException(string message, Exception innerException);
new System.Runtime.DurableInstancing.InstanceLockLostException : string * Exception -> System.Runtime.DurableInstancing.InstanceLockLostException
Public Sub New (message As String, innerException As Exception)
Parametrar
- message
- String
Orsaken till undantaget.
- innerException
- Exception
Undantaget som orsakade det aktuella undantaget.
Gäller för
InstanceLockLostException(XName, Guid)
Initierar en instans av InstanceLockLostException klassen med hjälp av XName (kombinationen av namnområde och namn) för kommandot och ID:t för målinstansen som kommandot kördes mot.
public:
InstanceLockLostException(System::Xml::Linq::XName ^ commandName, Guid instanceId);
public InstanceLockLostException(System.Xml.Linq.XName commandName, Guid instanceId);
new System.Runtime.DurableInstancing.InstanceLockLostException : System.Xml.Linq.XName * Guid -> System.Runtime.DurableInstancing.InstanceLockLostException
Public Sub New (commandName As XName, instanceId As Guid)
Parametrar
- commandName
- XName
XName (kombinationen av namnområde och namn) för kommandot.
- instanceId
- Guid
ID:t för målinstansen som kommandot kördes mot.
Gäller för
InstanceLockLostException(XName, Guid, Exception)
Initierar en instans av InstanceLockLostException klassen med hjälp av XName (kombinationen av namnområde och namn) för kommandot, ID för målinstansen som kommandot kördes mot och den inre undantagsinformationen.
public:
InstanceLockLostException(System::Xml::Linq::XName ^ commandName, Guid instanceId, Exception ^ innerException);
public InstanceLockLostException(System.Xml.Linq.XName commandName, Guid instanceId, Exception innerException);
new System.Runtime.DurableInstancing.InstanceLockLostException : System.Xml.Linq.XName * Guid * Exception -> System.Runtime.DurableInstancing.InstanceLockLostException
Public Sub New (commandName As XName, instanceId As Guid, innerException As Exception)
Parametrar
- commandName
- XName
XName (kombinationen av namnområde och namn) för kommandot.
- instanceId
- Guid
ID:t för målinstansen som kommandot kördes mot.
- innerException
- Exception
Undantaget som orsakade det aktuella undantaget.
Gäller för
InstanceLockLostException(XName, Guid, String, Exception)
Initierar en instans av InstanceLockLostException klassen med hjälp av XName (kombinationen av namnområde och namn) för kommandot, ID:t för målinstansen som kommandot kördes mot, felmeddelande som förklarar orsaken till undantaget och undantaget som orsakade det aktuella undantaget.
public:
InstanceLockLostException(System::Xml::Linq::XName ^ commandName, Guid instanceId, System::String ^ message, Exception ^ innerException);
public InstanceLockLostException(System.Xml.Linq.XName commandName, Guid instanceId, string message, Exception innerException);
new System.Runtime.DurableInstancing.InstanceLockLostException : System.Xml.Linq.XName * Guid * string * Exception -> System.Runtime.DurableInstancing.InstanceLockLostException
Public Sub New (commandName As XName, instanceId As Guid, message As String, innerException As Exception)
Parametrar
- commandName
- XName
XName (kombinationen av namnområde och namn) för kommandot.
- instanceId
- Guid
ID:t för målinstansen som kommandot kördes mot.
- message
- String
Orsaken till undantaget.
- innerException
- Exception
Undantaget som orsakade det aktuella undantaget.