CheckoutException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
CheckoutException 클래스의 새 인스턴스를 초기화합니다.
오버로드
CheckoutException() |
관련된 메시지나 오류 코드가 없는 CheckoutException 클래스의 새 인스턴스를 초기화합니다. |
CheckoutException(String) |
지정된 메시지를 사용하여 CheckoutException 클래스의 새 인스턴스를 초기화합니다. |
CheckoutException(SerializationInfo, StreamingContext) |
사용되지 않음.
지정된 serialization 데이터와 컨텍스트를 사용하여 CheckoutException 클래스의 새 인스턴스를 초기화합니다. |
CheckoutException(String, Exception) |
지정된 예외 및 자세한 설명을 사용하여 CheckoutException 클래스의 새 인스턴스를 초기화합니다. |
CheckoutException(String, Int32) |
지정된 메시지와 오류 코드를 사용하여 CheckoutException 클래스의 새 인스턴스를 초기화합니다. |
CheckoutException()
- Source:
- CheckoutException.cs
- Source:
- CheckoutException.cs
- Source:
- CheckoutException.cs
관련된 메시지나 오류 코드가 없는 CheckoutException 클래스의 새 인스턴스를 초기화합니다.
public:
CheckoutException();
public CheckoutException ();
Public Sub New ()
적용 대상
CheckoutException(String)
- Source:
- CheckoutException.cs
- Source:
- CheckoutException.cs
- Source:
- CheckoutException.cs
지정된 메시지를 사용하여 CheckoutException 클래스의 새 인스턴스를 초기화합니다.
public:
CheckoutException(System::String ^ message);
public CheckoutException (string message);
public CheckoutException (string? message);
new System.ComponentModel.Design.CheckoutException : string -> System.ComponentModel.Design.CheckoutException
Public Sub New (message As String)
매개 변수
- message
- String
예외를 설명하는 메시지입니다.
적용 대상
CheckoutException(SerializationInfo, StreamingContext)
- Source:
- CheckoutException.cs
- Source:
- CheckoutException.cs
- Source:
- CheckoutException.cs
주의
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
지정된 serialization 데이터와 컨텍스트를 사용하여 CheckoutException 클래스의 새 인스턴스를 초기화합니다.
protected:
CheckoutException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected CheckoutException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected CheckoutException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.ComponentModel.Design.CheckoutException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ComponentModel.Design.CheckoutException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.ComponentModel.Design.CheckoutException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ComponentModel.Design.CheckoutException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
매개 변수
- info
- SerializationInfo
deserialization에 사용할 SerializationInfo입니다.
- context
- StreamingContext
deserialization에 사용할 대상입니다.
- 특성
적용 대상
CheckoutException(String, Exception)
- Source:
- CheckoutException.cs
- Source:
- CheckoutException.cs
- Source:
- CheckoutException.cs
지정된 예외 및 자세한 설명을 사용하여 CheckoutException 클래스의 새 인스턴스를 초기화합니다.
public:
CheckoutException(System::String ^ message, Exception ^ innerException);
public CheckoutException (string message, Exception innerException);
public CheckoutException (string? message, Exception? innerException);
new System.ComponentModel.Design.CheckoutException : string * Exception -> System.ComponentModel.Design.CheckoutException
Public Sub New (message As String, innerException As Exception)
매개 변수
- message
- String
오류에 대한 자세한 설명입니다.
- innerException
- Exception
이 예외의 원인인 내부 예외에 대한 참조입니다.
적용 대상
CheckoutException(String, Int32)
- Source:
- CheckoutException.cs
- Source:
- CheckoutException.cs
- Source:
- CheckoutException.cs
지정된 메시지와 오류 코드를 사용하여 CheckoutException 클래스의 새 인스턴스를 초기화합니다.
public:
CheckoutException(System::String ^ message, int errorCode);
public CheckoutException (string message, int errorCode);
public CheckoutException (string? message, int errorCode);
new System.ComponentModel.Design.CheckoutException : string * int -> System.ComponentModel.Design.CheckoutException
Public Sub New (message As String, errorCode As Integer)
매개 변수
- message
- String
예외를 설명하는 메시지입니다.
- errorCode
- Int32
전달할 오류 코드입니다.
적용 대상
.NET