1 implementation of GetFieldDescList
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
920public IEnumerable<TargetPointer> GetFieldDescList(ITypeHandle typeHandle)
6 references to GetFieldDescList
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\CallingConvention\CallingConvention_1.cs (1)
877fieldDescs = rts.GetFieldDescList(byRefLikeType);
Contracts\CallingConvention\CdacTypeHandle.cs (1)
190foreach (TargetPointer fieldDesc in Rts.GetFieldDescList(_typeHandle))
Contracts\RuntimeTypeSystem_1.cs (1)
705foreach (TargetPointer fd in ((IRuntimeTypeSystem)this).GetFieldDescList(current))
Microsoft.Diagnostics.DataContractReader.Legacy (3)
Dbi\DacDbiImpl.cs (2)
3138foreach (TargetPointer fdPtr in rts.GetFieldDescList(thApprox)) 5349TargetPointer[] fieldDescList = rts.GetFieldDescList(typeHandle).Take((int)cFields).ToArray();
SOSDacImpl.cs (1)
2877data->FirstField = rtsContract.GetFieldDescList(typeHandle).FirstOrDefault().ToClrDataAddress(_target);