IpcChannel.ChannelPriority 属性

定义

获取当前信道的优先级。

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

属性值

一个整数,表示分配给该信道的优先级。

实现

示例

下面的代码示例说明如何使用 ChannelPriority 属性。 此代码示例是为 IpcChannel 类提供的一个更大示例的一部分。

// 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);

注解

默认优先级为 20。

适用于