File: StringMetric.cs
Web Access
Project: src\src\Libraries\Microsoft.Extensions.AI.Evaluation\Microsoft.Extensions.AI.Evaluation.csproj (Microsoft.Extensions.AI.Evaluation)
// 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.AI.Evaluation;
 
/// <summary>
/// An <see cref="EvaluationMetric"/> containing a <see cref="string"/> value.
/// </summary>
/// <remarks>
/// A common use case for <see cref="StringMetric"/> is to represent a single value in an enumeration (or to represent
/// one value out of a set of possible values).
/// </remarks>
/// <param name="name">The name of the <see cref="StringMetric"/>.</param>
/// <param name="value">The value of the <see cref="StringMetric"/>.</param>
public sealed class StringMetric(string name, string? value = null) : EvaluationMetric<string>(name, value);