RemotingTimeoutException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
RemotingTimeoutException 클래스의 새 인스턴스를 초기화합니다.
오버로드
| Name | Description |
|---|---|
| RemotingTimeoutException() |
기본 속성을 사용하여 클래스의 새 인스턴스를 RemotingTimeoutException 초기화합니다. |
| RemotingTimeoutException(String) |
지정된 메시지를 사용하여 클래스의 RemotingTimeoutException 새 인스턴스를 초기화합니다. |
| RemotingTimeoutException(String, Exception) |
지정된 오류 메시지와 이 예외의 RemotingTimeoutException 원인인 내부 예외에 대한 참조를 사용하여 클래스의 새 인스턴스를 초기화합니다. |
RemotingTimeoutException()
기본 속성을 사용하여 클래스의 새 인스턴스를 RemotingTimeoutException 초기화합니다.
public:
RemotingTimeoutException();
public RemotingTimeoutException();
Public Sub New ()
설명
RemotingTimeoutException 는 클래스에서 Exception 상속됩니다. 다음 표에서는 클래스 인스턴스에 대한 초기 속성 값을 보여 줍니다 RemotingTimeoutException .
| 재산 | 가치 |
|---|---|
| InnerException | null |
| Message | 에 대한 지역화된 오류 메시지 RemotingTimeoutException |
적용 대상
RemotingTimeoutException(String)
지정된 메시지를 사용하여 클래스의 RemotingTimeoutException 새 인스턴스를 초기화합니다.
public:
RemotingTimeoutException(System::String ^ message);
public RemotingTimeoutException(string message);
new System.Runtime.Remoting.RemotingTimeoutException : string -> System.Runtime.Remoting.RemotingTimeoutException
Public Sub New (message As String)
매개 변수
- message
- String
예외가 발생한 이유를 나타내는 메시지입니다.
설명
RemotingTimeoutException 는 클래스에서 Exception 상속됩니다. 다음 표에서는 클래스 인스턴스에 대한 초기 속성 값을 보여 줍니다 RemotingTimeoutException .
| 속성 형식 | 상태 |
|---|---|
| InnerException | null |
| Message |
message 문자열 |
적용 대상
RemotingTimeoutException(String, Exception)
지정된 오류 메시지와 이 예외의 RemotingTimeoutException 원인인 내부 예외에 대한 참조를 사용하여 클래스의 새 인스턴스를 초기화합니다.
public:
RemotingTimeoutException(System::String ^ message, Exception ^ InnerException);
public RemotingTimeoutException(string message, Exception InnerException);
new System.Runtime.Remoting.RemotingTimeoutException : string * Exception -> System.Runtime.Remoting.RemotingTimeoutException
Public Sub New (message As String, InnerException As Exception)
매개 변수
- message
- String
예외의 이유를 설명하는 오류 메시지입니다.
- InnerException
- Exception
현재 예외의 원인인 예외입니다. 매개 변수가 InnerException 아닌 null경우 내부 예외를 catch 처리하는 블록에서 현재 예외가 발생합니다.
설명
이전 예외의 직접적인 결과로 throw된 예외는 속성에 이전 예외에 대한 참조를 InnerException 포함해야 합니다. 속성 생성 InnerException 자에 전달 되는 동일한 값을 반환 하거나 null 속성 생성자에 내부 예외 값을 제공 하지 않는 경우 InnerException .
다음 표에서는 클래스 인스턴스에 대한 초기 속성 값을 보여 줍니다 RemotingTimeoutException .
| 재산 | 가치 |
|---|---|
| InnerException | 내부 예외 참조 |
| Message | 오류 메시지 문자열 |