20 references to DataCollectorConfig
Microsoft.TestPlatform.CrossPlatEngine (1)
AttachmentsProcessing\DataCollectorAttachmentsProcessorsFactory.cs (1)
99Type attachmentProcessorType = ((DataCollectorConfig)dataCollectorExtension.TestPluginInfo!).AttachmentsProcessorType!;
Microsoft.VisualStudio.TestPlatform.Common (19)
DataCollection\DataCollectionManager.cs (4)
426/// The <see cref="DataCollectorConfig"/>. 428protected virtual DataCollectorConfig? TryGetDataCollectorConfig(string extensionUri) 435return (DataCollectorConfig)extension.TestPluginInfo!; 486DataCollectorConfig? dataCollectorConfig;
DataCollection\DataCollectorConfig.cs (1)
19/// Initializes a new instance of the <see cref="DataCollectorConfig"/> class.
DataCollection\DataCollectorInformation.cs (2)
46internal DataCollectorInformation(ObjectModel.DataCollection.DataCollector dataCollector, XmlElement? configurationElement, DataCollectorConfig dataCollectorConfig, DataCollectionEnvironmentContext? environmentContext, IDataCollectionAttachmentManager attachmentManager, TestPlatformDataCollectionEvents events, IMessageSink messageSink, string settingsXml) 71public DataCollectorConfig DataCollectorConfig { get; set; }
DataCollection\TestPlatformDataCollectionLogger.cs (2)
22private readonly DataCollectorConfig _dataCollectorConfig; 38internal TestPlatformDataCollectionLogger(IMessageSink sink, DataCollectorConfig dataCollectorConfig)
DataCollection\TestPlatformDataCollectionSink.cs (2)
28internal TestPlatformDataCollectionSink(IDataCollectionAttachmentManager attachmentManager, DataCollectorConfig dataCollectorConfig) 50private DataCollectorConfig DataCollectorConfig
ExtensionFramework\DataCollectionExtensionManager.cs (2)
53TestPluginManager.GetSpecificTestExtensions<DataCollectorConfig, ObjectModel.DataCollection.DataCollector, IDataCollectorCapabilities, DataCollectorMetadata>( 78TestPluginManager.GetTestExtensions<DataCollectorConfig, ObjectModel.DataCollection.DataCollector, IDataCollectorCapabilities, DataCollectorMetadata>(
ExtensionFramework\Utilities\TestExtensions.cs (6)
85internal Dictionary<string, DataCollectorConfig>? DataCollectors { get; set; } 280else if (type == typeof(DataCollectorConfig)) 324else if (type == typeof(DataCollectorConfig)) 365else if (type == typeof(DataCollectorConfig)) 470else if (type == typeof(DataCollectorConfig)) 472DataCollectors = (Dictionary<string, DataCollectorConfig>)(object)testPluginInfos;