<PackageReference Include="Microsoft.Identity.Client" Version="4.86.1-azure-arc-preview" />

Microsoft.Identity.Client.ITelemetryEventPayload

public interface ITelemetryEventPayload
Data that represents a single snapshot in the series of events that are collected
namespace Microsoft.Identity.Client { public interface ITelemetryEventPayload { string Name { get; } IReadOnlyDictionary<string, bool> BoolValues { get; } IReadOnlyDictionary<string, long> Int64Values { get; } IReadOnlyDictionary<string, int> IntValues { get; } IReadOnlyDictionary<string, string> StringValues { get; } string ToJsonString(); } }