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",
24 references to TelemetryFeatureName
Microsoft.CodeAnalysis.EditorFeatures (3)
Editor\EditorLayerExtensionManager.cs (1)
83TelemetryFeatureName.GetExtensionName(providerType),
ErrorReporting\EditorErrorReportingService.cs (2)
27public void ShowGlobalErrorInfo(string message, TelemetryFeatureName featureName, Exception? exception, params InfoBarUI[] items) 30public void ShowFeatureNotAvailableErrorInfo(string message, TelemetryFeatureName featureName, Exception? exception)
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
InlineRename\CommandHandlers\RenameCommandHandler.cs (1)
126TelemetryFeatureName.InlineRename,
InlineRename\UI\Dashboard\RenameDashboard.xaml.cs (1)
357TelemetryFeatureName.InlineRename,
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\CodeFixes\CodeFixService.cs (1)
381TelemetryFeatureName.CodeFixProvider,
Microsoft.CodeAnalysis.Remote.Workspaces (1)
BrokeredServiceConnection.cs (1)
414_errorReportingService.ShowFeatureNotAvailableErrorInfo(message, TelemetryFeatureName.GetRemoteFeatureName(_serviceDescriptor.ComponentName, _serviceDescriptor.SimpleName), internalException);
Microsoft.CodeAnalysis.Workspaces (9)
ErrorReporting\IErrorReportingService.cs (2)
24void ShowGlobalErrorInfo(string message, TelemetryFeatureName featureName, Exception? exception, params InfoBarUI[] items); 28void ShowFeatureNotAvailableErrorInfo(string message, TelemetryFeatureName featureName, Exception? exception);
Telemetry\TelemetryFeatureName.cs (7)
20public static readonly TelemetryFeatureName CodeFixProvider = GetClientFeatureName("CodeFixProvider"); 21public static readonly TelemetryFeatureName InlineRename = GetClientFeatureName("InlineRename"); 22public static readonly TelemetryFeatureName LegacySuppressionFix = GetClientFeatureName("TelemetryFeatureName"); 23public static readonly TelemetryFeatureName VirtualMemoryNotification = GetClientFeatureName("VirtualMemoryNotification"); 34private static TelemetryFeatureName GetClientFeatureName(string name) 37public static TelemetryFeatureName GetRemoteFeatureName(string componentName, string serviceName) 40public static TelemetryFeatureName GetExtensionName(Type type)
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (2)
TestErrorReportingService.cs (2)
32public void ShowGlobalErrorInfo(string message, TelemetryFeatureName featureName, Exception? exception, params InfoBarUI[] items) 35public void ShowFeatureNotAvailableErrorInfo(string message, TelemetryFeatureName featureName, Exception? exception)
Microsoft.VisualStudio.LanguageServices (6)
ErrorReporting\VisualStudioErrorReportingService.cs (2)
41public void ShowGlobalErrorInfo(string message, TelemetryFeatureName featureName, Exception? exception, params InfoBarUI[] items) 60public void ShowFeatureNotAvailableErrorInfo(string message, TelemetryFeatureName featureName, Exception? exception)
ExternalAccess\LegacyCodeAnalysis\LegacyCodeAnalysisVisualStudioSuppressionFixServiceAccessor.cs (3)
48TelemetryFeatureName.LegacySuppressionFix, 70TelemetryFeatureName.LegacySuppressionFix, 92TelemetryFeatureName.LegacySuppressionFix,
Implementation\VirtualMemoryNotificationListener.cs (1)
165TelemetryFeatureName.VirtualMemoryNotification,