1 implementation of GetFieldDescList
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
868
public IEnumerable<TargetPointer>
GetFieldDescList
(TypeHandle typeHandle)
6 references to GetFieldDescList
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\CallingConvention\CallingConvention_1.cs (1)
854
fieldDescs = rts.
GetFieldDescList
(byRefLikeType);
Contracts\CallingConvention\CdacTypeHandle.cs (1)
151
foreach (TargetPointer fieldDesc in Rts.
GetFieldDescList
(_typeHandle))
Contracts\RuntimeTypeSystem_1.cs (1)
654
foreach (TargetPointer fd in ((IRuntimeTypeSystem)this).
GetFieldDescList
(current))
Microsoft.Diagnostics.DataContractReader.Legacy (3)
Dbi\DacDbiImpl.cs (2)
2393
foreach (TargetPointer fdPtr in rts.
GetFieldDescList
(thApprox))
4586
TargetPointer[] fieldDescList = rts.
GetFieldDescList
(typeHandle).Take((int)cFields).ToArray();
SOSDacImpl.cs (1)
2871
data->FirstField = rtsContract.
GetFieldDescList
(typeHandle).FirstOrDefault().ToClrDataAddress(_target);