IExternalScopeProvider
Represents a storage of common scope data.
using System;
using System.Runtime.CompilerServices;
namespace Microsoft.Extensions.Logging
{
[NullableContext(1)]
public interface IExternalScopeProvider
{
void ForEachScope<[Nullable(2)] TState>([Nullable(new byte[] {
1,
2,
1
})] Action<object, TState> callback, TState state);
IDisposable Push([Nullable(2)] object state);
}
}