Bagikan melalui


EnrichmentServiceCollectionExtensions.AddLogEnricher Metode

Definisi

Overload

AddLogEnricher(IServiceCollection, ILogEnricher)

Mendaftarkan instans pengaya log.

AddLogEnricher<T>(IServiceCollection)

Mendaftarkan jenis pengaya log.

AddLogEnricher(IServiceCollection, ILogEnricher)

Sumber:
EnrichmentServiceCollectionExtensions.cs
Sumber:
EnrichmentServiceCollectionExtensions.cs

Mendaftarkan instans pengaya log.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddLogEnricher(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Microsoft::Extensions::Diagnostics::Enrichment::ILogEnricher ^ enricher);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddLogEnricher (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher enricher);
static member AddLogEnricher : Microsoft.Extensions.DependencyInjection.IServiceCollection * Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddLogEnricher (services As IServiceCollection, enricher As ILogEnricher) As IServiceCollection

Parameter

services
IServiceCollection

Kontainer injeksi dependensi untuk menambahkan instans pengaya.

enricher
ILogEnricher

Instans pengaya untuk ditambahkan.

Mengembalikan

Nilai dari services.

Pengecualian

services atau enricher adalah null.

Berlaku untuk

AddLogEnricher<T>(IServiceCollection)

Sumber:
EnrichmentServiceCollectionExtensions.cs
Sumber:
EnrichmentServiceCollectionExtensions.cs

Mendaftarkan jenis pengaya log.

public:
generic <typename T>
 where T : class, Microsoft::Extensions::Diagnostics::Enrichment::ILogEnricher[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddLogEnricher(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddLogEnricher<T> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where T : class, Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher;
static member AddLogEnricher : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'T : null and 'T :> Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher)
<Extension()>
Public Function AddLogEnricher(Of T As {Class, ILogEnricher}) (services As IServiceCollection) As IServiceCollection

Jenis parameter

T

Jenis pengaya.

Parameter

services
IServiceCollection

Kontainer injeksi dependensi untuk menambahkan jenis pengaya.

Mengembalikan

Nilai dari services.

Pengecualian

servicesadalah null.

Berlaku untuk