File: StaticFilterOptionsMonitor.cs
Web Access
Project: src\src\libraries\Microsoft.Extensions.Logging\src\Microsoft.Extensions.Logging.csproj (Microsoft.Extensions.Logging)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using Microsoft.Extensions.Options;
 
namespace Microsoft.Extensions.Logging
{
    internal sealed class StaticFilterOptionsMonitor : IOptionsMonitor<LoggerFilterOptions>
    {
        public StaticFilterOptionsMonitor(LoggerFilterOptions currentValue)
        {
            CurrentValue = currentValue ?? throw new ArgumentNullException(nameof(currentValue));
        }
 
        public IDisposable? OnChange(Action<LoggerFilterOptions, string> listener) => null;
 
        public LoggerFilterOptions Get(string? name) => CurrentValue;
 
        public LoggerFilterOptions CurrentValue { get; }
    }
}