1 write to Id
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
Client\TestSessionInfo.cs (1)
21
Id
= Guid.NewGuid();
8 references to Id
Microsoft.TestPlatform.CommunicationUtilities (5)
_generated\44\TestPlatformJsonContext.TestSessionInfo.g.cs (2)
60
Getter = static obj => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo)obj).
Id
,
88
writer.WriteString(PropName_Id, ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo)value).
Id
);
Serialization\TestSessionInfoConverter.cs (3)
15
/// JSON converter for <see cref="TestSessionInfo"/> that handles the private setter on <see cref="TestSessionInfo.
Id
"/>
36
typeof(TestSessionInfo).GetProperty(nameof(TestSessionInfo.
Id
))!.SetValue(info, id);
45
writer.WriteString("Id", value.
Id
);
Microsoft.VisualStudio.TestPlatform.ObjectModel (3)
Client\TestSessionInfo.cs (3)
37
return
Id
.GetHashCode();
61
return other != null &&
Id
.Equals(other.
Id
);