FileLoggingSession.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 active. |
AddLoggingChannel(ILoggingChannel, LoggingLevel) |
Ajoute un canal de journalisation à la session de journalisation active. Le canal de journalisation accepte uniquement les événements dont le niveau de journalisation est supérieur ou égal au niveau de journalisation spécifié. |
AddLoggingChannel(ILoggingChannel)
Ajoute un canal de journalisation à la session de journalisation active.
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
Remarques
Le niveau de journalisation est défini sur LoggingLevel.Verbose. **LoggingChannel ** accepte tous les événements.
L’ajout d’un canal à une session plusieurs fois met à jour le niveau.
Voir aussi
S’applique à
AddLoggingChannel(ILoggingChannel, LoggingLevel)
Ajoute un canal de journalisation à la session de journalisation active. Le canal de journalisation accepte uniquement les événements dont le niveau de journalisation est supérieur ou égal au niveau de journalisation spécifié.
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 minimal qu’un événement doit accepter par la session.
Implémente
- Attributs
Remarques
maxLevel spécifie les événements du canal que la session acceptera et ceux qui sont ignorés. Il ne modifie pas le niveau du canal lui-même.