10 instantiations of ApplicationInsightsEntryFormat
dotnet (9)
Telemetry\AllowListToSendFirstAppliedOptions.cs (1)
28result.Add(new ApplicationInsightsEntryFormat(
Telemetry\AllowListToSendFirstArgument.cs (1)
34result.Add(new ApplicationInsightsEntryFormat(
Telemetry\AllowListToSendVerbSecondVerbFirstArgument.cs (1)
32result.Add(new ApplicationInsightsEntryFormat(
Telemetry\TelemetryFilter.cs (5)
58result.Add(new ApplicationInsightsEntryFormat( 75result.Add(new ApplicationInsightsEntryFormat( 82result.Add(new ApplicationInsightsEntryFormat( 152result.Add(new ApplicationInsightsEntryFormat( 172result.Add(new ApplicationInsightsEntryFormat(
Telemetry\TopLevelCommandNameAndOptionToLog.cs (1)
33result.Add(new ApplicationInsightsEntryFormat(
Microsoft.DotNet.Cli.Utils (1)
TelemetryEventEntry.cs (1)
111return new ApplicationInsightsEntryFormat(EventName, appliedProperties, Measurements);
18 references to ApplicationInsightsEntryFormat
dotnet (14)
Commands\Hidden\InternalReportInstallSuccess\InternalReportInstallSuccessCommand.cs (1)
37foreach (var e in filter.Filter(new InstallerSuccessReport(exeName)))
Telemetry\AllowListToSendFirstAppliedOptions.cs (2)
17public List<ApplicationInsightsEntryFormat> AllowList(ParseResult parseResult, Dictionary<string, double> measurements = null) 20var result = new List<ApplicationInsightsEntryFormat>();
Telemetry\AllowListToSendFirstArgument.cs (2)
17public List<ApplicationInsightsEntryFormat> AllowList(ParseResult parseResult, Dictionary<string, double> measurements = null) 19var result = new List<ApplicationInsightsEntryFormat>();
Telemetry\AllowListToSendVerbSecondVerbFirstArgument.cs (2)
18public List<ApplicationInsightsEntryFormat> AllowList(ParseResult parseResult, Dictionary<string, double> measurements = null) 20var result = new List<ApplicationInsightsEntryFormat>();
Telemetry\IParseResultLogRule.cs (1)
13List<ApplicationInsightsEntryFormat> AllowList(ParseResult parseResult, Dictionary<string, double> measurements = null);
Telemetry\TelemetryFilter.cs (4)
25public IEnumerable<ApplicationInsightsEntryFormat> Filter(object objectToFilter) 27var result = new List<ApplicationInsightsEntryFormat>(); 143ICollection<ApplicationInsightsEntryFormat> result, 164ICollection<ApplicationInsightsEntryFormat> result,
Telemetry\TopLevelCommandNameAndOptionToLog.cs (2)
21public List<ApplicationInsightsEntryFormat> AllowList(ParseResult parseResult, Dictionary<string, double> measurements = null) 24var result = new List<ApplicationInsightsEntryFormat>();
Microsoft.DotNet.Cli.Utils (4)
ITelemetryFilter.cs (1)
8IEnumerable<ApplicationInsightsEntryFormat> Filter(object o);
TelemetryEventEntry.cs (3)
29foreach (ApplicationInsightsEntryFormat entry in TelemetryFilter.Filter(o)) 76public IEnumerable<ApplicationInsightsEntryFormat> Filter(object o) 108public ApplicationInsightsEntryFormat WithAppliedToPropertiesValue(Func<string?, string> func)