다음을 통해 공유


RemotingException 생성자

정의

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

오버로드

RemotingException()

기본 속성을 사용하여 RemotingException 클래스의 새 인스턴스를 초기화합니다.

RemotingException(String)

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

RemotingException(SerializationInfo, StreamingContext)

serialize된 데이터로부터 RemotingException 클래스의 새 인스턴스를 초기화합니다.

RemotingException(String, Exception)

지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 RemotingException 클래스의 새 인스턴스를 초기화합니다.

RemotingException()

기본 속성을 사용하여 RemotingException 클래스의 새 인스턴스를 초기화합니다.

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

설명

RemotingException 상속 되는 SystemException 클래스입니다. 다음 표에서 인스턴스에 대 한 초기 속성 값이 표시는 RemotingException 클래스:

속성
InnerException null
Message 빈 문자열 ("")

추가 정보

적용 대상

RemotingException(String)

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

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

매개 변수

message
String

예외 발생 원인을 설명하는 오류 메시지입니다.

설명

RemotingException 상속 되는 SystemException 클래스입니다. 다음 표에서 인스턴스에 대 한 초기 속성 값이 표시는 RemotingException 클래스:

속성 유형 조건
InnerException null
Message message 문자열

추가 정보

적용 대상

RemotingException(SerializationInfo, StreamingContext)

serialize된 데이터로부터 RemotingException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

info
SerializationInfo

serialize된 개체 데이터를 보유하는 개체입니다.

context
StreamingContext

예외의 소스 또는 대상에 대한 컨텍스트 정보입니다.

예외

info 매개 변수가 null인 경우

설명

이 생성자는 스트림을 통해 전송되는 예외 개체를 다시 구성하기 위해 역직렬화 중에 호출됩니다. (Serialization에 대 한 자세한 내용은 참조 하세요. XML 및 SOAP Serialization.)

적용 대상

RemotingException(String, Exception)

지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 RemotingException 클래스의 새 인스턴스를 초기화합니다.

public:
 RemotingException(System::String ^ message, Exception ^ InnerException);
public RemotingException (string message, Exception InnerException);
new System.Runtime.Remoting.RemotingException : string * Exception -> System.Runtime.Remoting.RemotingException
Public Sub New (message As String, InnerException As Exception)

매개 변수

message
String

예외 발생 원인을 설명하는 오류 메시지입니다.

InnerException
Exception

현재 예외의 원인인 예외입니다. InnerException 매개 변수가 null이 아니면 현재 예외는 내부 예외를 처리하는 catch 블록에서 발생합니다.

설명

이전 예외의 직접 결과로 이전 예외에 대 한 참조를 포함 됩니다 때 throw 되는 예외는 InnerException 속성입니다. InnerException 속성은 생성자로 전달되는 값과 같은 값을 반환하거나, InnerException 속성이 생성자에 내부 예외 값을 제공하지 않는 경우 null을 반환합니다.

다음 표에서 인스턴스에 대 한 초기 속성 값이 표시는 RemotingException 클래스:

속성
InnerException 내부 예외 참조
Message 오류 메시지 문자열입니다.

추가 정보

적용 대상