InvalidAsynchronousStateException 생성자

정의

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

오버로드

InvalidAsynchronousStateException()

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

InvalidAsynchronousStateException(String)

지정된 자세한 설명을 사용하여 InvalidAsynchronousStateException 클래스의 새 인스턴스를 초기화합니다.

InvalidAsynchronousStateException(SerializationInfo, StreamingContext)
사용되지 않음.

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

InvalidAsynchronousStateException(String, Exception)

지정된 예외 및 자세한 설명을 사용하여 InvalidAsynchronousStateException 클래스의 새 인스턴스를 초기화합니다.

InvalidAsynchronousStateException()

Source:
InvalidAsynchronousStateException.cs
Source:
InvalidAsynchronousStateException.cs
Source:
InvalidAsynchronousStateException.cs

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

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

추가 정보

적용 대상

InvalidAsynchronousStateException(String)

Source:
InvalidAsynchronousStateException.cs
Source:
InvalidAsynchronousStateException.cs
Source:
InvalidAsynchronousStateException.cs

지정된 자세한 설명을 사용하여 InvalidAsynchronousStateException 클래스의 새 인스턴스를 초기화합니다.

public:
 InvalidAsynchronousStateException(System::String ^ message);
public InvalidAsynchronousStateException (string? message);
public InvalidAsynchronousStateException (string message);
new System.ComponentModel.InvalidAsynchronousStateException : string -> System.ComponentModel.InvalidAsynchronousStateException
Public Sub New (message As String)

매개 변수

message
String

오류에 대한 자세한 설명입니다.

추가 정보

적용 대상

InvalidAsynchronousStateException(SerializationInfo, StreamingContext)

Source:
InvalidAsynchronousStateException.cs
Source:
InvalidAsynchronousStateException.cs
Source:
InvalidAsynchronousStateException.cs

주의

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

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

protected:
 InvalidAsynchronousStateException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected InvalidAsynchronousStateException (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 InvalidAsynchronousStateException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.ComponentModel.InvalidAsynchronousStateException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ComponentModel.InvalidAsynchronousStateException
[<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.InvalidAsynchronousStateException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ComponentModel.InvalidAsynchronousStateException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

deserialization에 사용할 SerializationInfo입니다.

context
StreamingContext

deserialization에 사용할 대상입니다.

특성

추가 정보

적용 대상

InvalidAsynchronousStateException(String, Exception)

Source:
InvalidAsynchronousStateException.cs
Source:
InvalidAsynchronousStateException.cs
Source:
InvalidAsynchronousStateException.cs

지정된 예외 및 자세한 설명을 사용하여 InvalidAsynchronousStateException 클래스의 새 인스턴스를 초기화합니다.

public:
 InvalidAsynchronousStateException(System::String ^ message, Exception ^ innerException);
public InvalidAsynchronousStateException (string? message, Exception? innerException);
public InvalidAsynchronousStateException (string message, Exception innerException);
new System.ComponentModel.InvalidAsynchronousStateException : string * Exception -> System.ComponentModel.InvalidAsynchronousStateException
Public Sub New (message As String, innerException As Exception)

매개 변수

message
String

오류에 대한 자세한 설명입니다.

innerException
Exception

이 예외의 원인인 내부 예외에 대한 참조입니다.

추가 정보

적용 대상