IpcClientChannel.ChannelPriority Property    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the priority of the current channel.
public:
 property int ChannelPriority { int get(); };public int ChannelPriority { get; }member this.ChannelPriority : intPublic ReadOnly Property ChannelPriority As IntegerProperty Value
An integer that indicates the priority assigned to the channel.
Implements
Examples
The following code example shows how to use the ChannelPriority property.
// 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);
Remarks
The priority controls the order in which competing clients connect to a given endpoint; higher priority channels connect before lower priority channels. The default priority is 1; negative priorities are allowed.