MsmqException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
MsmqException 클래스의 새 인스턴스를 초기화합니다.
오버로드
MsmqException() |
MsmqException 클래스의 새 인스턴스를 초기화합니다. |
MsmqException(String) |
제공된 메시지를 사용하여 MsmqException 클래스의 새 인스턴스를 초기화합니다. |
MsmqException(SerializationInfo, StreamingContext) |
예외에 대해 serialize된 추가 정보를 사용하여 MsmqException 클래스의 새 인스턴스를 초기화합니다. |
MsmqException(String, Exception) |
제공된 메시지와 내부 예외를 사용하여 MsmqException 클래스의 새 인스턴스를 초기화합니다. |
MsmqException(String, Int32) |
제공된 메시지와 오류 코드를 사용하여 MsmqException 클래스의 새 인스턴스를 초기화합니다. |
MsmqException()
MsmqException 클래스의 새 인스턴스를 초기화합니다.
public:
MsmqException();
public MsmqException ();
Public Sub New ()
설명
큐를 열고, 큐에 정보를 쿼리하고, 메시지를 보내고, 메시지를 받는 등 메시지 큐(MSMQ) 채널이 메시지 큐와 상호 작용하는 경우 이 예외가 throw될 수 있습니다.
적용 대상
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) 채널이 메시지 큐와 상호 작용하는 경우 이 예외가 throw될 수 있습니다.
적용 대상
MsmqException(SerializationInfo, StreamingContext)
예외에 대해 serialize된 추가 정보를 사용하여 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과 연결된 serialize된 개체가 들어 있는 MsmqException입니다.
- context
- StreamingContext
StreamingContext과 연결된 serialize된 스트림의 소스와 대상이 들어 있는 MsmqException입니다.
설명
큐를 열고, 큐에 정보를 쿼리하고, 메시지를 보내고, 메시지를 받는 등 메시지 큐(MSMQ) 채널이 메시지 큐와 상호 작용하는 경우 이 예외가 throw될 수 있습니다.
적용 대상
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) 채널이 메시지 큐와 상호 작용하는 경우 이 예외가 throw될 수 있습니다.
적용 대상
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 클래스의 새 인스턴스를 초기화하는 데 사용됩니다.
설명
큐를 열고, 큐에 정보를 쿼리하고, 메시지를 보내고, 메시지를 받는 등 메시지 큐 채널이 메시지 큐와 상호 작용하는 경우 이 예외가 throw될 수 있습니다.