ChannelClosedException 생성자

정의

오버로드

Name Description
ChannelClosedException()

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

ChannelClosedException(Exception)

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

ChannelClosedException(String)

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

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

직렬화된 데이터를 사용하여 클래스의 새 인스턴스를 ChannelClosedException 초기화합니다.

ChannelClosedException(String, Exception)

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

ChannelClosedException()

Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs

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

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

적용 대상

ChannelClosedException(Exception)

Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs

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

public:
 ChannelClosedException(Exception ^ innerException);
public ChannelClosedException(Exception? innerException);
public ChannelClosedException(Exception innerException);
new System.Threading.Channels.ChannelClosedException : Exception -> System.Threading.Channels.ChannelClosedException
Public Sub New (innerException As Exception)

매개 변수

innerException
Exception

이 예외의 원인인 예외입니다.

적용 대상

ChannelClosedException(String)

Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs

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

public:
 ChannelClosedException(System::String ^ message);
public ChannelClosedException(string? message);
public ChannelClosedException(string message);
new System.Threading.Channels.ChannelClosedException : string -> System.Threading.Channels.ChannelClosedException
Public Sub New (message As String)

매개 변수

message
String

오류를 설명하는 메시지입니다.

적용 대상

ChannelClosedException(SerializationInfo, StreamingContext)

Source:
ChannelClosedException.netstandard21.cs
Source:
ChannelClosedException.netstandard21.cs
Source:
ChannelClosedException.netcoreapp.cs
Source:
ChannelClosedException.netcoreapp.cs
Source:
ChannelClosedException.netstandard21.cs
Source:
ChannelClosedException.netcoreapp.cs

주의

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

직렬화된 데이터를 사용하여 클래스의 새 인스턴스를 ChannelClosedException 초기화합니다.

protected:
 ChannelClosedException(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 ChannelClosedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
protected ChannelClosedException(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}")>]
new System.Threading.Channels.ChannelClosedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Threading.Channels.ChannelClosedException
new System.Threading.Channels.ChannelClosedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Threading.Channels.ChannelClosedException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

serialize된 개체 데이터를 보유하는 개체입니다.

context
StreamingContext

원본 또는 대상에 대한 컨텍스트 정보입니다.

특성

적용 대상

ChannelClosedException(String, Exception)

Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs
Source:
ChannelClosedException.cs

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

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

매개 변수

message
String

오류를 설명하는 메시지입니다.

innerException
Exception

이 예외의 원인인 예외입니다.

적용 대상