2 writes to Id
Microsoft.VisualStudio.TestPlatform.ObjectModel (2)
DataCollector\Common\Session.cs (2)
17Id = Guid.NewGuid(); 22Id = id;
6 references to Id
Microsoft.VisualStudio.TestPlatform.Common (2)
DataCollection\DataCollectionAttachmentManager.cs (2)
108SessionOutputDirectory = Path.Combine(Path.GetTempPath(), DefaultOutputDirectoryName, id.Id.ToString()); 115SessionOutputDirectory = Path.Combine(absolutePath, id.Id.ToString());
Microsoft.VisualStudio.TestPlatform.ObjectModel (4)
DataCollector\Common\Session.cs (4)
31public override bool Equals(object? obj) => obj is SessionId sessionId && Id.Equals(sessionId.Id); 33public override int GetHashCode() => Id.GetHashCode(); 35public override string ToString() => Id.ToString("B");