Channel.CreateUnbounded Méthode

Définition

Surcharges

Nom Description
CreateUnbounded<T>()

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

CreateUnbounded<T>(UnboundedChannelOptions)

Crée un canal non lié soumis aux options fournies.

CreateUnbounded<T>()

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

Crée un canal non lié 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

Canal créé.

S’applique à

CreateUnbounded<T>(UnboundedChannelOptions)

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

Crée un canal non lié soumis aux 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 guident le comportement du canal.

Retours

Canal créé.

Exceptions

options a la valeur null.

S’applique à