1 instantiation of RequestId
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
DataCollector\Common\RequestId.cs (1)
20public static readonly RequestId Empty = new(Guid.Empty);
16 references to RequestId
Microsoft.VisualStudio.TestPlatform.ObjectModel (16)
DataCollector\Common\RequestId.cs (15)
15public sealed class RequestId : IEquatable<RequestId>, IComparable<RequestId>, IComparable 20public static readonly RequestId Empty = new(Guid.Empty); 59RequestId? other = obj as RequestId; 92public bool Equals(RequestId? other) 110public int CompareTo(RequestId? other) 125/// 'obj' is not null and not an instance of <see cref="RequestId"/> 134RequestId? other = obj as RequestId; 136? throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, Resources.Resources.Common_ObjectMustBeOfType, [typeof(RequestId).Name]), nameof(obj)) 152public static bool operator ==(RequestId? left, RequestId? right) 167public static bool operator !=(RequestId? left, RequestId? right)
DataCollector\TransferInformation\BaseTransferInformation.cs (1)
60public RequestId? RequestId { get; set; }