Partager via


Channel.CreateUnbounded Méthode

Définition

Surcharges

CreateUnbounded<T>()

Crée un canal illimité utilisable par un nombre quelconque de lecteurs et d’enregistreurs simultanément.

CreateUnbounded<T>(UnboundedChannelOptions)

Crée un canal illimité conditionné par les options fournies.

CreateUnbounded<T>()

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

Crée un canal illimité utilisable par un nombre quelconque de lecteurs et d’enregistreurs simultanément.

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)

Paramètres de type

T

Type de données dans le canal.

Retours

Le canal créé.

S’applique à

CreateUnbounded<T>(UnboundedChannelOptions)

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

Crée un canal illimité conditionné par les options fournies.

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)

Paramètres de type

T

Spécifie le type de données dans le canal.

Paramètres

options
UnboundedChannelOptions

Options qui conditionnent le comportement du canal.

Retours

Le canal créé.

S’applique à