Azure.Identity.IScopeHandler
interface IScopeHandler
namespace Azure.Identity
{
internal interface IScopeHandler
{
DiagnosticScope CreateScope(ClientDiagnostics diagnostics, string name);
void Start(string name, DiagnosticScope scope);
void Dispose(string name, DiagnosticScope scope);
void Fail(string name, DiagnosticScope scope, Exception exception);
}
}