in src/AWS.Logger.AspNetCore/AWSLogger.cs [85:91]
public IDisposable BeginScope<TState>(TState state)
{
if (state == null)
throw new ArgumentNullException(nameof(state));
return ScopeProvider?.Push(state) ?? NullScope.Instance;
}