FciException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
FciException 클래스의 새 인스턴스를 만듭니다.
오버로드
FciException() |
FciException 클래스의 새 인스턴스를 만듭니다. |
FciException(String) |
지정한 오류 메시지를 사용하여 FciException 클래스의 새 인스턴스를 만듭니다. |
FciException(SerializationInfo, StreamingContext) |
직렬화된 데이터를 사용하여 FciException 클래스의 새 인스턴스를 만듭니다. |
FciException(String, Exception) |
지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 FciException 클래스의 새 인스턴스를 초기화합니다. |
FciException()
FciException 클래스의 새 인스턴스를 만듭니다.
public:
FciException();
public FciException ();
Public Sub New ()
설명
이 생성자는 새 인스턴스의 Message 속성을 오류를 설명하는 시스템 제공 메시지로 초기화합니다.
다음 표에는 FciException의 인스턴스의 초기 속성 값이 나와 있습니다.
속성 | 값 |
---|---|
InnerException | null 참조입니다. |
Message | 시스템이 제공하는 지역화된 설명입니다. |
적용 대상
FciException(String)
지정한 오류 메시지를 사용하여 FciException 클래스의 새 인스턴스를 만듭니다.
public:
FciException(System::String ^ message);
public FciException (string message);
new Microsoft.SqlServer.Replication.FciException : string -> Microsoft.SqlServer.Replication.FciException
Public Sub New (message As String)
매개 변수
- message
- String
오류를 설명하는 메시지입니다.
설명
다음 표에는 FciException의 인스턴스의 초기 속성 값이 나와 있습니다.
속성 | 값 |
---|---|
InnerException | null 참조(Microsoft Visual Basic의 경우 Nothing)입니다. |
Message | 오류 메시지 문자열입니다. |
적용 대상
FciException(SerializationInfo, StreamingContext)
직렬화된 데이터를 사용하여 FciException 클래스의 새 인스턴스를 만듭니다.
protected:
FciException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected FciException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.SqlServer.Replication.FciException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.SqlServer.Replication.FciException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
매개 변수
- info
- SerializationInfo
serialize된 개체 데이터를 보유하는 개체입니다.
- context
- StreamingContext
원본 또는 대상에 대한 컨텍스트 정보입니다.
설명
이 생성자는 스트림을 통해 전송되는 예외 개체를 다시 구성하기 위해 역직렬화 중에 호출됩니다.
적용 대상
FciException(String, Exception)
지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 FciException 클래스의 새 인스턴스를 초기화합니다.
public:
FciException(System::String ^ message, Exception ^ innerException);
public FciException (string message, Exception innerException);
new Microsoft.SqlServer.Replication.FciException : string * Exception -> Microsoft.SqlServer.Replication.FciException
Public Sub New (message As String, innerException As Exception)
매개 변수
- message
- String
예외에 대한 이유를 설명하는 오류 메시지입니다.
- innerException
- Exception
현재 예외의 원인인 예외입니다.
설명
다음 표에는 FciException의 인스턴스의 초기 속성 값이 나와 있습니다.
속성 | 값 |
---|---|
InnerException | 내부 예외 참조 |
Message | 오류 메시지 문자열입니다. |