Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

LoggingServiceCollectionExtensions.AddLogging Method

Definition

Namespace:
Microsoft.Extensions.DependencyInjection
Assembly:
Microsoft.Extensions.Logging.dll
Package:
Microsoft.Extensions.Logging 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
AddLogging(IServiceCollection)

Adds logging services to the specified IServiceCollection.

AddLogging(IServiceCollection, Action<ILoggingBuilder>)

Adds logging services to the specified IServiceCollection.

AddLogging(IServiceCollection)

Source:
LoggingServiceCollectionExtensions.cs
Source:
LoggingServiceCollectionExtensions.cs
Source:
LoggingServiceCollectionExtensions.cs
Source:
LoggingServiceCollectionExtensions.cs

Adds logging services to the specified IServiceCollection.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddLogging(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddLogging(this Microsoft.Extensions.DependencyInjection.IServiceCollection services);
static member AddLogging : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddLogging (services As IServiceCollection) As IServiceCollection

Parameters

services
IServiceCollection

The IServiceCollection to add services to.

Returns

The IServiceCollection so that additional calls can be chained.

Applies to

AddLogging(IServiceCollection, Action<ILoggingBuilder>)

Source:
LoggingServiceCollectionExtensions.cs
Source:
LoggingServiceCollectionExtensions.cs
Source:
LoggingServiceCollectionExtensions.cs
Source:
LoggingServiceCollectionExtensions.cs

Adds logging services to the specified IServiceCollection.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddLogging(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Action<Microsoft::Extensions::Logging::ILoggingBuilder ^> ^ configure);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddLogging(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.Extensions.Logging.ILoggingBuilder> configure);
static member AddLogging : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.Extensions.Logging.ILoggingBuilder> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddLogging (services As IServiceCollection, configure As Action(Of ILoggingBuilder)) As IServiceCollection

Parameters

services
IServiceCollection

The IServiceCollection to add services to.

configure
Action<ILoggingBuilder>

The ILoggingBuilder configuration delegate.

Returns

The IServiceCollection so that additional calls can be chained.

Applies to


Feedback

Was this page helpful?