다음을 통해 공유


MessageHeaderException 생성자

정의

MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

오버로드

MessageHeaderException()

MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

MessageHeaderException(String)

지정된 메시지를 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

MessageHeaderException(SerializationInfo, StreamingContext)

데이터를 MessageHeaderException 개체로 역직렬화하는 데 사용되는 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

MessageHeaderException(String, Boolean)

지정된 메시지와 메시지 헤더가 중복되었는지 또는 누락되었는지를 나타내는 값을 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

MessageHeaderException(String, Exception)

지정된 메시지와 예외의 원인인 내부 예외를 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

MessageHeaderException(String, String, String)

지정된 메시지, 헤더 이름 및 네임스페이스를 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

MessageHeaderException(String, String, String, Boolean)

지정된 메시지, 헤더 이름 및 네임스페이스, 메시지 헤더가 중복되었는지 또는 누락되었는지를 나타내는 값을 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

MessageHeaderException(String, String, String, Exception)

지정된 메시지, 헤더 이름 및 네임스페이스, 예외의 원인인 내부 예외를 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

MessageHeaderException(String, String, String, Boolean, Exception)

지정된 메시지, 헤더 이름 및 네임스페이스, 메시지 헤더가 중복되었는지 또는 누락되었는지를 나타내는 값, 예외의 원인인 내부 예외를 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다

설명

사용자에게 오류 메시지를 전달하려면 MessageHeaderException(String) 생성자를 사용합니다.

사용자에게 오류 메시지 및 예외의 원인인 내부 예외에 대한 참조를 전달하려면 MessageHeaderException(String, Exception) 생성자를 사용합니다.

serialization 정보와 스트리밍 컨텍스트를 전달하려면 MessageHeaderException(SerializationInfo, StreamingContext) 생성자를 사용합니다.

MessageHeaderException()

Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs

MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

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

적용 대상

MessageHeaderException(String)

Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs

지정된 메시지를 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

message
String

예외에서 전달된 메시지입니다.

설명

사용자에게 오류 메시지를 전달하려면 이 생성자를 사용합니다. 메시지 매개 변수의 내용은 사용자가 이해할 수 있는 것이어야 합니다.

적용 대상

MessageHeaderException(SerializationInfo, StreamingContext)

Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs

데이터를 MessageHeaderException 개체로 역직렬화하는 데 사용되는 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

info
SerializationInfo

throw되는 예외에 대해 serialize된 개체 데이터를 보유하는 SerializationInfo입니다.

context
StreamingContext

소스 또는 대상에 대한 컨텍스트 정보를 포함하는 StreamingContext입니다.

설명

이 생성자는 역직렬화 중에 호출되어 스트림을 통해 전송되는 예외 개체를 복원합니다.

적용 대상

MessageHeaderException(String, Boolean)

Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs

지정된 메시지와 메시지 헤더가 중복되었는지 또는 누락되었는지를 나타내는 값을 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

public:
 MessageHeaderException(System::String ^ message, bool isDuplicate);
public MessageHeaderException (string message, bool isDuplicate);
new System.ServiceModel.MessageHeaderException : string * bool -> System.ServiceModel.MessageHeaderException
Public Sub New (message As String, isDuplicate As Boolean)

매개 변수

message
String

예외 메시지입니다.

isDuplicate
Boolean

여러 메시지 헤더가 중복되어 있으면 true이고, 메시지 헤더가 없으면 false입니다.

적용 대상

MessageHeaderException(String, Exception)

Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs

지정된 메시지와 예외의 원인인 내부 예외를 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

message
String

예외 메시지입니다.

innerException
Exception

예외의 원인인 내부 예외가 포함된 Exception입니다.

설명

사용자에게 내부 예외에 관한 정보 및 오류 메시지를 전달하려면 이 생성자를 사용합니다. 메시지 매개 변수의 내용은 사용자가 이해할 수 있는 것이어야 합니다.

이전 예외의 직접적인 결과로 throw되는 예외는 InnerException 속성에 이전 예외에 대한 참조를 포함할 수 있습니다. InnerException 속성은 생성자에 전달된 것과 동일한 값을 반환하거나, null 속성이 내부 예외 값을 생성자에 전달하지 않는 경우 Nothing 참조(Visual Basic의 경우 InnerException)를 반환합니다.

적용 대상

MessageHeaderException(String, String, String)

Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs

지정된 메시지, 헤더 이름 및 네임스페이스를 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

public:
 MessageHeaderException(System::String ^ message, System::String ^ headerName, System::String ^ ns);
public MessageHeaderException (string message, string headerName, string ns);
new System.ServiceModel.MessageHeaderException : string * string * string -> System.ServiceModel.MessageHeaderException
Public Sub New (message As String, headerName As String, ns As String)

매개 변수

message
String

예외 메시지입니다.

headerName
String

메시지 헤더의 이름입니다.

ns
String

메시지 헤더의 네임스페이스입니다.

적용 대상

MessageHeaderException(String, String, String, Boolean)

Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs

지정된 메시지, 헤더 이름 및 네임스페이스, 메시지 헤더가 중복되었는지 또는 누락되었는지를 나타내는 값을 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

public:
 MessageHeaderException(System::String ^ message, System::String ^ headerName, System::String ^ ns, bool isDuplicate);
public MessageHeaderException (string message, string headerName, string ns, bool isDuplicate);
new System.ServiceModel.MessageHeaderException : string * string * string * bool -> System.ServiceModel.MessageHeaderException
Public Sub New (message As String, headerName As String, ns As String, isDuplicate As Boolean)

매개 변수

message
String

예외 메시지입니다.

headerName
String

메시지 헤더의 이름입니다.

ns
String

메시지 헤더의 네임스페이스입니다.

isDuplicate
Boolean

여러 메시지 헤더가 중복되어 있으면 true이고, 메시지 헤더가 없으면 false입니다.

적용 대상

MessageHeaderException(String, String, String, Exception)

Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs

지정된 메시지, 헤더 이름 및 네임스페이스, 예외의 원인인 내부 예외를 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다.

public:
 MessageHeaderException(System::String ^ message, System::String ^ headerName, System::String ^ ns, Exception ^ innerException);
public MessageHeaderException (string message, string headerName, string ns, Exception innerException);
new System.ServiceModel.MessageHeaderException : string * string * string * Exception -> System.ServiceModel.MessageHeaderException
Public Sub New (message As String, headerName As String, ns As String, innerException As Exception)

매개 변수

message
String

예외 메시지입니다.

headerName
String

메시지 헤더의 이름입니다.

ns
String

메시지 헤더의 네임스페이스입니다.

innerException
Exception

예외의 원인인 내부 예외가 포함된 Exception입니다.

적용 대상

MessageHeaderException(String, String, String, Boolean, Exception)

Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs
Source:
MessageHeaderException.cs

지정된 메시지, 헤더 이름 및 네임스페이스, 메시지 헤더가 중복되었는지 또는 누락되었는지를 나타내는 값, 예외의 원인인 내부 예외를 사용하여 MessageHeaderException 클래스의 새 인스턴스를 초기화합니다

public:
 MessageHeaderException(System::String ^ message, System::String ^ headerName, System::String ^ ns, bool isDuplicate, Exception ^ innerException);
public MessageHeaderException (string message, string headerName, string ns, bool isDuplicate, Exception innerException);
new System.ServiceModel.MessageHeaderException : string * string * string * bool * Exception -> System.ServiceModel.MessageHeaderException
Public Sub New (message As String, headerName As String, ns As String, isDuplicate As Boolean, innerException As Exception)

매개 변수

message
String

예외 메시지입니다.

headerName
String

메시지 헤더의 이름입니다.

ns
String

메시지 헤더의 네임스페이스입니다.

isDuplicate
Boolean

여러 메시지 헤더가 중복되어 있으면 true이고, 메시지 헤더가 없으면 false입니다.

innerException
Exception

예외의 원인인 내부 예외가 포함된 Exception입니다.

적용 대상