LoggingSession.AddLoggingChannel Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
AddLoggingChannel(ILoggingChannel) |
Ajoute un canal de journalisation à la session de journalisation actuelle. |
AddLoggingChannel(ILoggingChannel, LoggingLevel) |
Ajoute un canal de journalisation avec le niveau de journalisation spécifié à la session de journalisation actuelle. |
AddLoggingChannel(ILoggingChannel)
Ajoute un canal de journalisation à la session de journalisation actuelle.
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)
Paramètres
- loggingChannel
- ILoggingChannel
Canal de journalisation à ajouter.
Implémente
- Attributs
Voir aussi
S’applique à
AddLoggingChannel(ILoggingChannel, LoggingLevel)
Ajoute un canal de journalisation avec le niveau de journalisation spécifié à la session de journalisation actuelle.
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)
Paramètres
- loggingChannel
- ILoggingChannel
Canal de journalisation à ajouter.
- maxLevel
- LoggingLevel
Niveau de journalisation pour loggingChannel.
Implémente
- Attributs
Remarques
Vous pouvez également utiliser cette fonction pour modifier le niveau auquel un canal est ajouté à une session ; pour ce faire, appelez AddLoggingChannel, à l’aide du canal de journalisation existant, mais avec le niveau mis à jour.