1 write to Value
Microsoft.Diagnostics.DataContractReader.Legacy (1)
Marshalling\ClrDataAddress.cs (1)
19
public ClrDataAddress(ulong value) =>
Value
= value;
14 references to Value
Microsoft.Diagnostics.DataContractReader.Legacy (14)
ConversionExtensions.cs (4)
57
long signedAddr = (long)address.
Value
;
60
throw new ArgumentException($"ClrDataAddress 0x{address.
Value
:x} out of range for the target platform.", nameof(address));
77
long signedAddr = (long)address.
Value
;
80
throw new ArgumentException($"ClrDataAddress 0x{address.
Value
:x} out of range for the target platform.", nameof(address));
Marshalling\ClrDataAddress.cs (6)
21
public static implicit operator ulong(ClrDataAddress a) => a.
Value
;
25
public readonly bool Equals(ClrDataAddress other) =>
Value
== other.
Value
;
26
public override readonly int GetHashCode() =>
Value
.GetHashCode();
28
public override readonly string ToString() => $"0x{
Value
:x}";
35
public static ulong ConvertToUnmanaged(ClrDataAddress address) => address.
Value
;
SOSDacImpl.cs (4)
4991
pCallback(EcmaMetadataUtils.GetRowId(metadataToken), element.ToClrDataAddress(_target).
Value
, token);
5047
info.RCW.ToClrDataAddress(_target).
Value
,
5048
info.Context.ToClrDataAddress(_target).
Value
,
5049
info.STAThread.ToClrDataAddress(_target).
Value
,