| File: Features\IConnectionMetricsTagsFeature.cs | Web Access |
| Project: src\aspnetcore\src\Servers\Connections.Abstractions\src\Microsoft.AspNetCore.Connections.Abstractions.csproj (Microsoft.AspNetCore.Connections.Abstractions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.Generic; namespace Microsoft.AspNetCore.Connections.Features; /// <summary> /// Provides access to tags added to the metrics connection counter. This feature isn't set if the counter isn't enabled. /// </summary> public interface IConnectionMetricsTagsFeature { /// <summary> /// Gets the tag collection. /// </summary> ICollection<KeyValuePair<string, object?>> Tags { get; } }