1 write to FilePath
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
InvokedDataCollector.cs (1)
24FilePath = filePath ?? throw new ArgumentNullException(nameof(filePath));
13 references to FilePath
Microsoft.TestPlatform.CommunicationUtilities (2)
_generated\46\TestPlatformJsonContext.InvokedDataCollector.g.cs (2)
123Getter = static obj => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector)obj).FilePath, 176writer.WriteString(PropName_FilePath, ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector)value).FilePath);
Microsoft.TestPlatform.CrossPlatEngine (6)
AttachmentsProcessing\DataCollectorAttachmentsProcessorsFactory.cs (6)
45foreach (var invokedDataCollector in invokedDataCollectors.OrderByDescending(d => d.FilePath)) 53EqtTrace.Info($"DataCollectorAttachmentsProcessorsFactory: Analyzing data collector attachment processor Uri: {invokedDataCollector.Uri} AssemblyQualifiedName: {invokedDataCollector.AssemblyQualifiedName} FilePath: {invokedDataCollector.FilePath} HasAttachmentProcessor: {invokedDataCollector.HasAttachmentProcessor}"); 98var dataCollectorExtensionManager = DataCollectorExtensionManagerCache.GetOrAdd(invokedDataCollector.FilePath, DataCollectorExtensionManager.Create(invokedDataCollector.FilePath, true, TestSessionMessageLogger.Instance)); 112EqtTrace.Info($"DataCollectorAttachmentsProcessorsFactory: Creation of collector attachment processor '{attachmentProcessorType.AssemblyQualifiedName}' from file '{invokedDataCollector.FilePath}' succeded"); 125EqtTrace.Info($"DataCollectorAttachmentsProcessorsFactory: Collector attachment processor '{attachmentProcessorType.AssemblyQualifiedName}' from file '{invokedDataCollector.FilePath}' added to the 'run list'");
Microsoft.VisualStudio.TestPlatform.ObjectModel (5)
InvokedDataCollector.cs (5)
69&& FilePath == other.FilePath; 90hashCode = (hashCode * 397) ^ (FilePath != null ? FilePath.GetHashCode() : 0); 101=> $"Uri: '{Uri}' FriendlyName: '{FriendlyName}' AssemblyQualifiedName: '{AssemblyQualifiedName}' FilePath: '{FilePath}' HasAttachmentProcessor: '{HasAttachmentProcessor}'";