共用方式為


IpcClientChannel.ChannelPriority 屬性

定義

取得目前通道的優先權。

public:
 property int ChannelPriority { int get(); };
public int ChannelPriority { get; }
member this.ChannelPriority : int
Public ReadOnly Property ChannelPriority As Integer

屬性值

Int32

整數,表示指派給通道的優先權。

實作

範例

下列程式碼範例示範如何使用 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);

備註

優先順序會控制競爭用戶端連線至指定端點的順序;優先順序較高的通道在優先順序較低的通道之前連線。 預設優先順序為 1;允許負優先順序。

適用於