Compartir a través de


LoggingSession.AddLoggingChannel Método

Definición

Sobrecargas

AddLoggingChannel(ILoggingChannel)

Agrega un canal de registro a la sesión de registro actual.

AddLoggingChannel(ILoggingChannel, LoggingLevel)

Agrega un canal de registro con el nivel de registro especificado a la sesión de registro actual.

AddLoggingChannel(ILoggingChannel)

Agrega un canal de registro a la sesión de registro actual.

public:
 virtual void AddLoggingChannel(ILoggingChannel ^ loggingChannel) = AddLoggingChannel;
/// [Windows.Foundation.Metadata.Overload("AddLoggingChannel")]
void AddLoggingChannel(ILoggingChannel const& loggingChannel);
[Windows.Foundation.Metadata.Overload("AddLoggingChannel")]
public void AddLoggingChannel(ILoggingChannel loggingChannel);
function addLoggingChannel(loggingChannel)
Public Sub AddLoggingChannel (loggingChannel As ILoggingChannel)

Parámetros

loggingChannel
ILoggingChannel

Canal de registro que se va a agregar.

Implementaciones

Atributos

Consulte también

Se aplica a

AddLoggingChannel(ILoggingChannel, LoggingLevel)

Agrega un canal de registro con el nivel de registro especificado a la sesión de registro actual.

public:
 virtual void AddLoggingChannel(ILoggingChannel ^ loggingChannel, LoggingLevel maxLevel) = AddLoggingChannel;
/// [Windows.Foundation.Metadata.Overload("AddLoggingChannelWithLevel")]
void AddLoggingChannel(ILoggingChannel const& loggingChannel, LoggingLevel const& maxLevel);
[Windows.Foundation.Metadata.Overload("AddLoggingChannelWithLevel")]
public void AddLoggingChannel(ILoggingChannel loggingChannel, LoggingLevel maxLevel);
function addLoggingChannel(loggingChannel, maxLevel)
Public Sub AddLoggingChannel (loggingChannel As ILoggingChannel, maxLevel As LoggingLevel)

Parámetros

loggingChannel
ILoggingChannel

Canal de registro que se va a agregar.

maxLevel
LoggingLevel

Nivel de registro para loggingChannel.

Implementaciones

Atributos

Comentarios

También puede usar esta función para cambiar el nivel en el que se agrega un canal a una sesión; para ello, llame a AddLoggingChannel mediante el canal de registro existente, pero con el nivel actualizado.

Consulte también

Se aplica a