Channel.CreateUnbounded 메서드

정의

오버로드

Name Description
CreateUnbounded<T>()

여러 판독기 및 작성자가 동시에 사용할 수 있는 바인딩되지 않은 채널을 만듭니다.

CreateUnbounded<T>(UnboundedChannelOptions)

제공된 옵션에 따라 바인딩되지 않은 채널을 만듭니다.

CreateUnbounded<T>()

Source:
Channel.cs
Source:
Channel.cs
Source:
Channel.cs
Source:
Channel.cs
Source:
Channel.cs
Source:
Channel.cs

여러 판독기 및 작성자가 동시에 사용할 수 있는 바인딩되지 않은 채널을 만듭니다.

public:
generic <typename T>
 static System::Threading::Channels::Channel<T> ^ CreateUnbounded();
public static System.Threading.Channels.Channel<T> CreateUnbounded<T>();
static member CreateUnbounded : unit -> System.Threading.Channels.Channel<'T>
Public Shared Function CreateUnbounded(Of T) () As Channel(Of T)

형식 매개 변수

T

채널의 데이터 형식입니다.

반품

만든 채널입니다.

적용 대상

CreateUnbounded<T>(UnboundedChannelOptions)

Source:
Channel.cs
Source:
Channel.cs
Source:
Channel.cs
Source:
Channel.cs
Source:
Channel.cs
Source:
Channel.cs

제공된 옵션에 따라 바인딩되지 않은 채널을 만듭니다.

public:
generic <typename T>
 static System::Threading::Channels::Channel<T> ^ CreateUnbounded(System::Threading::Channels::UnboundedChannelOptions ^ options);
public static System.Threading.Channels.Channel<T> CreateUnbounded<T>(System.Threading.Channels.UnboundedChannelOptions options);
static member CreateUnbounded : System.Threading.Channels.UnboundedChannelOptions -> System.Threading.Channels.Channel<'T>
Public Shared Function CreateUnbounded(Of T) (options As UnboundedChannelOptions) As Channel(Of T)

형식 매개 변수

T

채널의 데이터 형식을 지정합니다.

매개 변수

options
UnboundedChannelOptions

채널의 동작을 안내하는 옵션입니다.

반품

만든 채널입니다.

예외

optionsnull입니다.

적용 대상