Channel.CreateUnbounded Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Sobrecargas
| Name | Description |
|---|---|
| CreateUnbounded<T>() |
Cria um canal ilimitado utilizável por qualquer número de leitores e escritores simultaneamente. |
| CreateUnbounded<T>(UnboundedChannelOptions) |
Cria um canal ilimitado sujeito às opções fornecidas. |
CreateUnbounded<T>()
- Origem:
- Channel.cs
- Origem:
- Channel.cs
- Origem:
- Channel.cs
- Origem:
- Channel.cs
- Origem:
- Channel.cs
- Origem:
- Channel.cs
Cria um canal ilimitado utilizável por qualquer número de leitores e escritores simultaneamente.
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)
Parâmetros de Tipo Genérico
- T
O tipo de dados no canal.
Devoluções
O canal criado.
Aplica-se a
CreateUnbounded<T>(UnboundedChannelOptions)
- Origem:
- Channel.cs
- Origem:
- Channel.cs
- Origem:
- Channel.cs
- Origem:
- Channel.cs
- Origem:
- Channel.cs
- Origem:
- Channel.cs
Cria um canal ilimitado sujeito às opções fornecidas.
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)
Parâmetros de Tipo Genérico
- T
Especifica o tipo de dados no canal.
Parâmetros
- options
- UnboundedChannelOptions
Opções que orientam o comportamento do canal.
Devoluções
O canal criado.
Exceções
options é null.