Microsoft.Identity.Client.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();
}
}