1 write to _type
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Data\JITNotification.cs (1)
22
_type
= target.GetTypeInfo(DataType.JITNotification);
6 references to _type
Microsoft.Diagnostics.DataContractReader.Contracts (6)
Data\JITNotification.cs (6)
25
_state = target.ReadField<ushort>(address,
_type
, nameof(State));
26
_clrModule = target.ReadNUIntField(address,
_type
, nameof(ClrModule));
27
_methodToken = target.ReadField<uint>(address,
_type
, nameof(MethodToken));
33
set => _state = _target.WriteField(_address,
_type
, nameof(State), value);
39
set => _clrModule = _target.WriteNUIntField(_address,
_type
, nameof(ClrModule), value);
45
set => _methodToken = _target.WriteField(_address,
_type
, nameof(MethodToken), value);