3 instantiations of TelemetryFeatureName
Microsoft.CodeAnalysis.Workspaces (3)
Telemetry\TelemetryFeatureName.cs (3)
35
=>
new
(name, LocalKind);
38
=>
new
(componentName + ":" + serviceName, RemoteKind);
41
=>
new
(type.Assembly.FullName?.StartsWith("Microsoft.", StringComparison.Ordinal) == true ? type.FullName! : "External",
9 references to TelemetryFeatureName
Microsoft.CodeAnalysis.Workspaces (9)
ErrorReporting\IErrorReportingService.cs (2)
24
void ShowGlobalErrorInfo(string message,
TelemetryFeatureName
featureName, Exception? exception, params InfoBarUI[] items);
28
void ShowFeatureNotAvailableErrorInfo(string message,
TelemetryFeatureName
featureName, Exception? exception);
Telemetry\TelemetryFeatureName.cs (7)
20
public static readonly
TelemetryFeatureName
CodeFixProvider = GetClientFeatureName("CodeFixProvider");
21
public static readonly
TelemetryFeatureName
InlineRename = GetClientFeatureName("InlineRename");
22
public static readonly
TelemetryFeatureName
LegacySuppressionFix = GetClientFeatureName("TelemetryFeatureName");
23
public static readonly
TelemetryFeatureName
VirtualMemoryNotification = GetClientFeatureName("VirtualMemoryNotification");
34
private static
TelemetryFeatureName
GetClientFeatureName(string name)
37
public static
TelemetryFeatureName
GetRemoteFeatureName(string componentName, string serviceName)
40
public static
TelemetryFeatureName
GetExtensionName(Type type)