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