Compartir a través de


IpcChannel.ChannelPriority Propiedad

Definición

Obtiene la prioridad del canal actual.

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

Valor de propiedad

Int32

Un entero que representa la prioridad asignada al canal.

Implementaciones

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad ChannelPriority. Este ejemplo de código forma parte de un ejemplo más grande proporcionado para la IpcChannel clase .

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

Comentarios

La prioridad predeterminada es 20.

Se aplica a