Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
EventLoggerFactoryExtensions.AddEventLog Method
Definition
- Namespace:
- Microsoft.Extensions.Logging
- Assembly:
- Microsoft.Extensions.Logging.EventLog.dll
- Package:
- Microsoft.Extensions.Logging.EventLog v11.0.0-preview.5.26302.115
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| AddEventLog(ILoggingBuilder) |
Adds an event logger named 'EventLog' to the factory. |
| AddEventLog(ILoggingBuilder, EventLogSettings) |
Adds an event logger. Use |
| AddEventLog(ILoggingBuilder, Action<EventLogSettings>) |
Adds an event logger. Use |
AddEventLog(ILoggingBuilder)
Adds an event logger named 'EventLog' to the factory.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::Logging::ILoggingBuilder ^ AddEventLog(Microsoft::Extensions::Logging::ILoggingBuilder ^ builder);
public static Microsoft.Extensions.Logging.ILoggingBuilder AddEventLog(this Microsoft.Extensions.Logging.ILoggingBuilder builder);
static member AddEventLog : Microsoft.Extensions.Logging.ILoggingBuilder -> Microsoft.Extensions.Logging.ILoggingBuilder
<Extension()>
Public Function AddEventLog (builder As ILoggingBuilder) As ILoggingBuilder
Parameters
- builder
- ILoggingBuilder
The extension method argument.
Returns
The ILoggingBuilder so that additional calls can be chained.
Applies to
AddEventLog(ILoggingBuilder, EventLogSettings)
Adds an event logger. Use settings to enable logging for specific log levels.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::Logging::ILoggingBuilder ^ AddEventLog(Microsoft::Extensions::Logging::ILoggingBuilder ^ builder, Microsoft::Extensions::Logging::EventLog::EventLogSettings ^ settings);
public static Microsoft.Extensions.Logging.ILoggingBuilder AddEventLog(this Microsoft.Extensions.Logging.ILoggingBuilder builder, Microsoft.Extensions.Logging.EventLog.EventLogSettings settings);
static member AddEventLog : Microsoft.Extensions.Logging.ILoggingBuilder * Microsoft.Extensions.Logging.EventLog.EventLogSettings -> Microsoft.Extensions.Logging.ILoggingBuilder
<Extension()>
Public Function AddEventLog (builder As ILoggingBuilder, settings As EventLogSettings) As ILoggingBuilder
Parameters
- builder
- ILoggingBuilder
The extension method argument.
- settings
- EventLogSettings
The EventLogSettings.
Returns
The ILoggingBuilder so that additional calls can be chained.
Applies to
AddEventLog(ILoggingBuilder, Action<EventLogSettings>)
Adds an event logger. Use configure to enable logging for specific log levels.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::Logging::ILoggingBuilder ^ AddEventLog(Microsoft::Extensions::Logging::ILoggingBuilder ^ builder, Action<Microsoft::Extensions::Logging::EventLog::EventLogSettings ^> ^ configure);
public static Microsoft.Extensions.Logging.ILoggingBuilder AddEventLog(this Microsoft.Extensions.Logging.ILoggingBuilder builder, Action<Microsoft.Extensions.Logging.EventLog.EventLogSettings> configure);
static member AddEventLog : Microsoft.Extensions.Logging.ILoggingBuilder * Action<Microsoft.Extensions.Logging.EventLog.EventLogSettings> -> Microsoft.Extensions.Logging.ILoggingBuilder
<Extension()>
Public Function AddEventLog (builder As ILoggingBuilder, configure As Action(Of EventLogSettings)) As ILoggingBuilder
Parameters
- builder
- ILoggingBuilder
The extension method argument.
- configure
- Action<EventLogSettings>
A delegate to configure the EventLogSettings.
Returns
The ILoggingBuilder so that additional calls can be chained.
Applies to
Feedback
Was this page helpful?
