Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-preview5_Microsoft.Extensions.Logging.md « Microsoft.AspNetCore.App « preview5 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 212972534db0954a10de5a2b98adc13989c5b1f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Microsoft.Extensions.Logging

``` diff
 namespace Microsoft.Extensions.Logging {
     public class LoggerFactory : IDisposable, ILoggerFactory {
-        public LoggerFactory(IEnumerable<ILoggerProvider> providers, IOptionsMonitor<LoggerFilterOptions> filterOption, IOptions<LoggerFactoryOptions>? options = null);
+        public LoggerFactory(IEnumerable<ILoggerProvider> providers, IOptionsMonitor<LoggerFilterOptions> filterOption, IOptions<LoggerFactoryOptions>? options);
+        public LoggerFactory(IEnumerable<ILoggerProvider> providers, IOptionsMonitor<LoggerFilterOptions> filterOption, IOptions<LoggerFactoryOptions>? options = null, IExternalScopeProvider? scopeProvider = null);
     }
 }
```