MsmqException 构造函数

定义

初始化 MsmqException 类的新实例。

重载

MsmqException()

初始化 MsmqException 类的新实例。

MsmqException(String)

使用提供的消息初始化 MsmqException 类的新实例。

MsmqException(SerializationInfo, StreamingContext)

使用有关该异常的其他序列化信息初始化 MsmqException 类的新实例。

MsmqException(String, Exception)

使用提供的消息和内部异常初始化 MsmqException 类的新实例。

MsmqException(String, Int32)

使用提供的消息和错误代码初始化 MsmqException 类的新实例。

MsmqException()

初始化 MsmqException 类的新实例。

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

注解

当消息队列 (MSMQ) 通道与消息队列交互时可能会引发此异常,这些交互包括打开队列、查询队列的信息、发送消息和接收消息。

适用于

MsmqException(String)

使用提供的消息初始化 MsmqException 类的新实例。

public:
 MsmqException(System::String ^ message);
public MsmqException (string message);
new System.ServiceModel.MsmqException : string -> System.ServiceModel.MsmqException
Public Sub New (message As String)

参数

message
String

用于初始化新实例的消息。

注解

当消息队列 (MSMQ) 通道与消息队列交互时可能会引发此异常,这些交互包括打开队列、查询队列的信息、发送消息和接收消息。

适用于

MsmqException(SerializationInfo, StreamingContext)

使用有关该异常的其他序列化信息初始化 MsmqException 类的新实例。

protected:
 MsmqException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected MsmqException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.ServiceModel.MsmqException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ServiceModel.MsmqException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

一个 SerializationInfo,它保存与 MsmqException 关联的序列化数据。

context
StreamingContext

一个 StreamingContext,它包含与 MsmqException 关联的序列化流的源和目标。

注解

当消息队列 (MSMQ) 通道与消息队列交互时可能会引发此异常,这些交互包括打开队列、查询队列的信息、发送消息和接收消息。

适用于

MsmqException(String, Exception)

使用提供的消息和内部异常初始化 MsmqException 类的新实例。

public:
 MsmqException(System::String ^ message, Exception ^ inner);
public MsmqException (string message, Exception inner);
new System.ServiceModel.MsmqException : string * Exception -> System.ServiceModel.MsmqException
Public Sub New (message As String, inner As Exception)

参数

message
String

用于初始化 MsmqException 类的新实例的消息。

inner
Exception

要通过 MsmqException 类的新实例来进行包装的内部异常。

注解

当消息队列 (MSMQ) 通道与消息队列交互时可能会引发此异常,这些交互包括打开队列、查询队列的信息、发送消息和接收消息。

适用于

MsmqException(String, Int32)

使用提供的消息和错误代码初始化 MsmqException 类的新实例。

public:
 MsmqException(System::String ^ message, int error);
public MsmqException (string message, int error);
new System.ServiceModel.MsmqException : string * int -> System.ServiceModel.MsmqException
Public Sub New (message As String, error As Integer)

参数

message
String

用于初始化 MsmqException 类的新实例的消息。

error
Int32

由消息队列 (MSMQ) 基础结构返回的错误代码,用于初始化 MsmqException 类的新实例。

注解

当消息队列通道与消息队列交互时可能会引发此异常,这些交互包括打开队列、查询队列的信息、发送消息和接收消息。

适用于