1 instantiation of DataCollectorInformation
Microsoft.VisualStudio.TestPlatform.Common (1)
DataCollection\DataCollectionManager.cs (1)
522dataCollectorInfo = new DataCollectorInformation(
18 references to DataCollectorInformation
Microsoft.VisualStudio.TestPlatform.Common (18)
DataCollection\DataCollectionManager.cs (10)
108RunDataCollectors = new Dictionary<Type, DataCollectorInformation>(); 121internal Dictionary<Type, DataCollectorInformation> RunDataCollectors { get; private set; } 269foreach (DataCollectorInformation dataCollectorInformation in RunDataCollectors.Values) 392RemoveDataCollectors(new List<DataCollectorInformation>(RunDataCollectors.Values)); 485DataCollectorInformation dataCollectorInfo; 633var failedCollectors = new List<DataCollectorInformation>(); 639foreach (var dataCollectorInfo in RunDataCollectors.Values. 677DataCollectorInformation dataCollectionWrapper, 741private void RemoveDataCollectors(IReadOnlyCollection<DataCollectorInformation> dataCollectorsToRemove) 750foreach (var dataCollectorToRemove in dataCollectorsToRemove)
DataCollection\DataCollectionTelemetryManager.cs (5)
34public void RecordEnvironmentVariableAddition(DataCollectorInformation dataCollectorInformation, string name, string value) 41public void RecordEnvironmentVariableConflict(DataCollectorInformation dataCollectorInformation, string name, string value, string existingValue) 47private void RecordProfilerMetricForNewVariable(string profilerVariable, string telemetryPrefix, DataCollectorInformation dataCollectorInformation, string name, string value) 57private void RecordProfilerMetricForConflictedVariable(string profilerVariable, string telemetryPrefix, DataCollectorInformation dataCollectorInformation, string name, string value, string existingValue) 92private static string GetTelemetryKey(string telemetryPrefix, DataCollectorInformation dataCollectorInformation)
DataCollection\DataCollectorInformation.cs (1)
22/// Initializes a new instance of the <see cref="DataCollectorInformation"/> class.
DataCollection\Interfaces\IDataCollectionTelemetryManager.cs (2)
23void RecordEnvironmentVariableAddition(DataCollectorInformation dataCollectorInformation, string name, string value); 40void RecordEnvironmentVariableConflict(DataCollectorInformation dataCollectorInformation, string name, string value, string existingValue);