다음을 통해 공유


TcpClientChannel.ChannelPriority 속성

정의

현재 채널의 우선 순위를 가져옵니다.

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

속성 값

채널에 할당된 우선 순위를 나타내는 정수입니다.

구현

예제

다음 코드 예제에서는이 속성의 사용을 보여 줍니다.

// Show the name and priority of the channel.
Console::WriteLine( "Channel Name: {0}", clientChannel->ChannelName );
Console::WriteLine( "Channel Priority: {0}", clientChannel->ChannelPriority );
// Show the name and priority of the channel.
Console.WriteLine("Channel Name: {0}", clientChannel.ChannelName);
Console.WriteLine("Channel Priority: {0}", clientChannel.ChannelPriority);

설명

우선 순위는 경쟁 클라이언트는 지정 된 엔드포인트에 연결 하는 순서를 제어 합니다. 낮은 우선 순위 채널 보다 먼저 우선 순위가 높은 채널이 연결합니다. 기본 우선 순위는 1입니다. 음수 우선 순위 허용 됩니다.

적용 대상