|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using Microsoft.Extensions.Compliance.Classification;
namespace Microsoft.Extensions.Logging;
/// <summary>
/// Interface given to custom tag providers, enabling them to emit tags.
/// </summary>
/// <remarks>
/// See <see cref="TagProviderAttribute"/> for details on how this interface is used.
/// </remarks>
public interface ITagCollector
{
/// <summary>
/// Adds a tag.
/// </summary>
/// <param name="tagName">The name of the tag to add.</param>
/// <param name="tagValue">The value of the tag to add.</param>
/// <exception cref="ArgumentNullException"><paramref name="tagName"/> is <see langword="null"/>.</exception>
/// <exception cref="ArgumentException"><paramref name="tagName" /> is empty or contains exclusively whitespace,
/// or when a tag of the same name has already been added.
/// </exception>
void Add(string tagName, object? tagValue);
/// <summary>
/// Adds a tag.
/// </summary>
/// <param name="tagName">The name of the tag to add.</param>
/// <param name="tagValue">The value of the tag to add.</param>
/// <param name="classifications">The data classifications of the tag value.</param>
/// <exception cref="ArgumentNullException"><paramref name="tagName"/> is <see langword="null"/>.</exception>
/// <exception cref="ArgumentException"><paramref name="tagName" /> is empty or contains exclusively whitespace,
/// or when a tag of the same name has already been added.
/// </exception>
void Add(string tagName, object? tagValue, DataClassificationSet classifications);
}
|