IpcClientChannel.ChannelPriority Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la priorité du canal actuel.
public:
property int ChannelPriority { int get(); };
public int ChannelPriority { get; }
member this.ChannelPriority : int
Public ReadOnly Property ChannelPriority As Integer
Valeur de propriété
Entier qui indique la priorité assignée au canal.
Implémente
Exemples
L'exemple de code suivant montre comment utiliser la propriété ChannelPriority.
// Show the priority of the channel.
Console::WriteLine( L"The priority of the channel is {0}.", clientChannel->ChannelPriority );
// Show the priority of the channel.
Console.WriteLine("The priority of the channel is {0}.",
clientChannel.ChannelPriority);
Remarques
La priorité contrôle l’ordre dans lequel les clients concurrents se connectent à un point de terminaison donné; les canaux de priorité plus élevés se connectent avant les canaux de priorité inférieurs. La priorité par défaut est 1 ; les priorités négatives sont autorisées.