InstanceKeyCompleteException 构造函数

定义

初始化 InstanceKeyCompleteException 类的实例。

重载

InstanceKeyCompleteException()

初始化 InstanceKeyCompleteException 类的实例。

InstanceKeyCompleteException(String)

使用错误消息初始化 InstanceKeyCompleteException 类的实例。

InstanceKeyCompleteException(SerializationInfo, StreamingContext)

使用序列化数据初始化 InstanceKeyCompleteException 类的实例。

InstanceKeyCompleteException(String, Exception)

使用错误消息和内部异常信息初始化 InstanceKeyCompleteException 类的实例。

InstanceKeyCompleteException(XName, InstanceKey)

使用此命令的名称和实例键信息初始化 InstanceKeyCompleteException 类的实例。

InstanceKeyCompleteException(XName, InstanceKey, Exception)

使用此命令的名称、实例键信息和内部异常(引发当前异常的异常)初始化 InstanceKeyCompleteException 类的实例。

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

使用作为参数传递的此命令的名称、执行此命令所针对的目标实例的 ID、实例键信息、解释此异常的原因的错误消息和内部异常(引发当前异常的异常)来初始化 InstanceKeyCompleteException 类的实例。

InstanceKeyCompleteException()

初始化 InstanceKeyCompleteException 类的实例。

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

适用于

InstanceKeyCompleteException(String)

使用错误消息初始化 InstanceKeyCompleteException 类的实例。

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

参数

message
String

异常的原因。

适用于

InstanceKeyCompleteException(SerializationInfo, StreamingContext)

使用序列化数据初始化 InstanceKeyCompleteException 类的实例。

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

参数

info
SerializationInfo

有关当前异常的信息。

context
StreamingContext

关于来源和目标的上下文信息

属性

适用于

InstanceKeyCompleteException(String, Exception)

使用错误消息和内部异常信息初始化 InstanceKeyCompleteException 类的实例。

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

参数

message
String

异常的原因。

innerException
Exception

引发当前异常的异常。

适用于

InstanceKeyCompleteException(XName, InstanceKey)

使用此命令的名称和实例键信息初始化 InstanceKeyCompleteException 类的实例。

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

参数

commandName
XName

此命令的 XName(命名空间和名称的组合)。

instanceKey
InstanceKey

有关该实例键的信息。

适用于

InstanceKeyCompleteException(XName, InstanceKey, Exception)

使用此命令的名称、实例键信息和内部异常(引发当前异常的异常)初始化 InstanceKeyCompleteException 类的实例。

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

参数

commandName
XName

此命令的 XName(命名空间和名称的组合)。

instanceKey
InstanceKey

有关该实例键的信息。

innerException
Exception

引发当前异常的异常。

适用于

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

使用作为参数传递的此命令的名称、执行此命令所针对的目标实例的 ID、实例键信息、解释此异常的原因的错误消息和内部异常(引发当前异常的异常)来初始化 InstanceKeyCompleteException 类的实例。

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

参数

commandName
XName

此命令的 XName(命名空间和名称的组合)。

instanceId
Guid

执行此命令所针对的实例的 ID。

instanceKey
InstanceKey

有关该实例键的信息。

message
String

用于解释异常原因的错误消息。

innerException
Exception

引发当前异常的异常。

适用于