Partager via


ConsoleLoggerExtensions.AddConsoleFormatter Méthode

Définition

Surcharges

AddConsoleFormatter<TFormatter,TOptions>(ILoggingBuilder)

Ajoute un enregistreur d’événements de console personnalisé.

AddConsoleFormatter<TFormatter,TOptions>(ILoggingBuilder, Action<TOptions>)

Ajoute un enregistreur d’événements de console personnalisé à configurer avec les options spécifiées.

AddConsoleFormatter<TFormatter,TOptions>(ILoggingBuilder)

Ajoute un enregistreur d’événements de console personnalisé.

public:
generic <typename TFormatter, typename TOptions>
 where TFormatter : Microsoft::Extensions::Logging::Console::ConsoleFormatter where TOptions : Microsoft::Extensions::Logging::Console::ConsoleFormatterOptions[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::Logging::ILoggingBuilder ^ AddConsoleFormatter(Microsoft::Extensions::Logging::ILoggingBuilder ^ builder);
public static Microsoft.Extensions.Logging.ILoggingBuilder AddConsoleFormatter<TFormatter,TOptions> (this Microsoft.Extensions.Logging.ILoggingBuilder builder) where TFormatter : Microsoft.Extensions.Logging.Console.ConsoleFormatter where TOptions : Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions;
static member AddConsoleFormatter : Microsoft.Extensions.Logging.ILoggingBuilder -> Microsoft.Extensions.Logging.ILoggingBuilder (requires 'Formatter :> Microsoft.Extensions.Logging.Console.ConsoleFormatter and 'Options :> Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions)
<Extension()>
Public Function AddConsoleFormatter(Of TFormatter As ConsoleFormatter, TOptions As ConsoleFormatter) (builder As ILoggingBuilder) As ILoggingBuilder

Paramètres de type

TFormatter

Formateur d’enregistreur d’événements de console personnalisé.

TOptions

Options de configuration.

Paramètres

builder
ILoggingBuilder

Instance actuelle du générateur de journalisation à utiliser.

Retours

ILoggingBuilder

Instance actuelle du générateur de journalisation, afin que les appels supplémentaires puissent être chaînés.

S’applique à

AddConsoleFormatter<TFormatter,TOptions>(ILoggingBuilder, Action<TOptions>)

Ajoute un enregistreur d’événements de console personnalisé à configurer avec les options spécifiées.

public:
generic <typename TFormatter, typename TOptions>
 where TFormatter : Microsoft::Extensions::Logging::Console::ConsoleFormatter where TOptions : Microsoft::Extensions::Logging::Console::ConsoleFormatterOptions[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::Logging::ILoggingBuilder ^ AddConsoleFormatter(Microsoft::Extensions::Logging::ILoggingBuilder ^ builder, Action<TOptions> ^ configure);
public static Microsoft.Extensions.Logging.ILoggingBuilder AddConsoleFormatter<TFormatter,TOptions> (this Microsoft.Extensions.Logging.ILoggingBuilder builder, Action<TOptions> configure) where TFormatter : Microsoft.Extensions.Logging.Console.ConsoleFormatter where TOptions : Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions;
static member AddConsoleFormatter : Microsoft.Extensions.Logging.ILoggingBuilder * Action<'Options (requires 'Options :> Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions)> -> Microsoft.Extensions.Logging.ILoggingBuilder (requires 'Formatter :> Microsoft.Extensions.Logging.Console.ConsoleFormatter and 'Options :> Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions)
<Extension()>
Public Function AddConsoleFormatter(Of TFormatter As ConsoleFormatter, TOptions As ConsoleFormatter) (builder As ILoggingBuilder, configure As Action(Of TOptions)) As ILoggingBuilder

Paramètres de type

TFormatter

Formateur d’enregistreur d’événements de console personnalisé.

TOptions

Options de configuration.

Paramètres

builder
ILoggingBuilder

Instance actuelle du générateur de journalisation à utiliser.

configure
Action<TOptions>

Délégué permettant de configurer TOptions pour le formateur personnalisé TFormatter.

Retours

ILoggingBuilder

Instance actuelle du générateur de journalisation, afin que les appels supplémentaires puissent être chaînés.

S’applique à