Azure.Identity.ScopeGroupHandler
namespace Azure.Identity
{
internal sealed class ScopeGroupHandler : IScopeHandler
{
public static IScopeHandler Current { get; }
public ScopeGroupHandler(string groupName);
public DiagnosticScope CreateScope(ClientDiagnostics diagnostics, string name);
public void Start(string name, ref DiagnosticScope scope);
public void Dispose(string name, ref DiagnosticScope scope);
public void Fail(string name, ref DiagnosticScope scope, Exception exception);
}
}