IpcServerChannel.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}.",serverChannel->ChannelPriority );
// Show the priority of the channel.
Console.WriteLine("The priority of the channel is {0}.",
serverChannel.ChannelPriority);
Remarques
La priorité contrôle l’ordre dans lequel les données de canal apparaissent dans une ObjRef instance ; les canaux de priorité supérieure s’affichent avant les canaux de priorité inférieure. Les clients essaient de se connecter aux canaux serveur dans l’ordre dans lequel ils sont répertoriés dans l’instance ObjRef . La priorité par défaut est 20 ; les priorités négatives sont autorisées.