File: Resilience\Internal\ResilienceTagNames.cs
Web Access
Project: src\src\Libraries\Microsoft.Extensions.Resilience\Microsoft.Extensions.Resilience.csproj (Microsoft.Extensions.Resilience)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.Extensions.Resilience.Internal;
 
internal static class ResilienceTagNames
{
    public const string ErrorType = "error.type";
 
    public const string DependencyName = "request.dependency.name";
 
    public const string RequestName = "request.name";
}