1 write to Uri
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
InvokedDataCollector.cs (1)
21Uri = uri ?? throw new ArgumentNullException(nameof(uri));
8 references to Uri
Microsoft.TestPlatform.CommunicationUtilities (1)
DataCollectionRequestHandler.cs (1)
388var invokedDataCollectorsForMetrics = invokedDataCollectors.Select(x => new { x.Uri, x.FriendlyName, x.HasAttachmentProcessor }.ToString());
Microsoft.TestPlatform.CrossPlatEngine (3)
AttachmentsProcessing\DataCollectorAttachmentsProcessorsFactory.cs (3)
45EqtTrace.Info($"DataCollectorAttachmentsProcessorsFactory: Analyzing data collector attachment processor Uri: {invokedDataCollector.Uri} AssemblyQualifiedName: {invokedDataCollector.AssemblyQualifiedName} FilePath: {invokedDataCollector.FilePath} HasAttachmentProcessor: {invokedDataCollector.HasAttachmentProcessor}"); 91var dataCollectorExtension = dataCollectorExtensionManager.TryGetTestExtension(invokedDataCollector.Uri); 94EqtTrace.Info($"DataCollectorAttachmentsProcessorsFactory: DataCollectorExtension not found for uri '{invokedDataCollector.Uri}'");
Microsoft.VisualStudio.TestPlatform.ObjectModel (4)
InvokedDataCollector.cs (4)
66&& Uri.AbsoluteUri == other.Uri.AbsoluteUri 87var hashCode = Uri.GetHashCode(); 101=> $"Uri: '{Uri}' FriendlyName: '{FriendlyName}' AssemblyQualifiedName: '{AssemblyQualifiedName}' FilePath: '{FilePath}' HasAttachmentProcessor: '{HasAttachmentProcessor}'";