PipeException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
PipeException 클래스의 새 인스턴스를 초기화합니다.
오버로드
PipeException() |
PipeException 클래스의 새 인스턴스를 초기화합니다. |
PipeException(String) |
지정된 오류 메시지를 사용하여 PipeException 클래스의 새 인스턴스를 초기화합니다. |
PipeException(SerializationInfo, StreamingContext) |
지정한 직렬화 정보와 스트리밍 컨텍스트를 포함하는 PipeException 클래스의 새 인스턴스를 초기화합니다. |
PipeException(String, Exception) |
지정된 오류 메시지와 내부 예외를 사용하여 PipeException 클래스의 새 인스턴스를 초기화합니다. |
PipeException(String, Int32) |
지정된 오류 메시지와 오류 코드를 사용하여 PipeException 클래스의 새 인스턴스를 초기화합니다. |
PipeException()
- Source:
- PipeException.cs
- Source:
- PipeException.cs
- Source:
- PipeException.cs
PipeException 클래스의 새 인스턴스를 초기화합니다.
public:
PipeException();
public PipeException ();
Public Sub New ()
적용 대상
PipeException(String)
- Source:
- PipeException.cs
- Source:
- PipeException.cs
- Source:
- PipeException.cs
지정된 오류 메시지를 사용하여 PipeException 클래스의 새 인스턴스를 초기화합니다.
public:
PipeException(System::String ^ message);
public PipeException (string message);
new System.IO.PipeException : string -> System.IO.PipeException
Public Sub New (message As String)
매개 변수
- message
- String
예외의 이유를 설명하는 오류 메시지가 포함된 문자열입니다.
적용 대상
PipeException(SerializationInfo, StreamingContext)
- Source:
- PipeException.cs
- Source:
- PipeException.cs
- Source:
- PipeException.cs
지정한 직렬화 정보와 스트리밍 컨텍스트를 포함하는 PipeException 클래스의 새 인스턴스를 초기화합니다.
protected:
PipeException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PipeException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IO.PipeException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.PipeException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
매개 변수
- info
- SerializationInfo
예외를 serialize하는 데 필요한 모든 데이터를 포함하는 SerializationInfo입니다.
- context
- StreamingContext
스트림의 소스 및 대상을 지정하는 StreamingContext입니다.
적용 대상
PipeException(String, Exception)
- Source:
- PipeException.cs
- Source:
- PipeException.cs
- Source:
- PipeException.cs
지정된 오류 메시지와 내부 예외를 사용하여 PipeException 클래스의 새 인스턴스를 초기화합니다.
public:
PipeException(System::String ^ message, Exception ^ inner);
public PipeException (string message, Exception inner);
new System.IO.PipeException : string * Exception -> System.IO.PipeException
Public Sub New (message As String, inner As Exception)
매개 변수
- message
- String
예외의 이유를 설명하는 오류 메시지가 포함된 문자열입니다.
적용 대상
PipeException(String, Int32)
- Source:
- PipeException.cs
- Source:
- PipeException.cs
- Source:
- PipeException.cs
지정된 오류 메시지와 오류 코드를 사용하여 PipeException 클래스의 새 인스턴스를 초기화합니다.
public:
PipeException(System::String ^ message, int errorCode);
public PipeException (string message, int errorCode);
new System.IO.PipeException : string * int -> System.IO.PipeException
Public Sub New (message As String, errorCode As Integer)
매개 변수
- message
- String
예외의 이유를 설명하는 오류 메시지가 포함된 문자열입니다.
- errorCode
- Int32
오류 코드가 포함된 정수입니다.
적용 대상
.NET