1 implementation of GetFieldDescList
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
920public IEnumerable<TargetPointer> GetFieldDescList(ITypeHandle typeHandle)
7 references to GetFieldDescList
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\CallingConvention\CallingConvention_1.cs (1)
652fieldDescs = rts.GetFieldDescList(layoutType);
Contracts\CallingConvention\CdacTypeHandle.cs (1)
206foreach (TargetPointer fieldDesc in Rts.GetFieldDescList(ExactTypeHandle))
Contracts\RuntimeTypeSystem_1.cs (1)
705foreach (TargetPointer fd in ((IRuntimeTypeSystem)this).GetFieldDescList(current))
Microsoft.Diagnostics.DataContractReader.Legacy (4)
ClrDataValue.cs (1)
929foreach (TargetPointer fieldDesc in rts.GetFieldDescList(types[i]))
Dbi\DacDbiImpl.cs (2)
3243foreach (TargetPointer fdPtr in rts.GetFieldDescList(thApprox)) 5499TargetPointer[] fieldDescList = rts.GetFieldDescList(typeHandle).Take((int)cFields).ToArray();
SOSDacImpl.cs (1)
2963data->FirstField = rtsContract.GetFieldDescList(typeHandle).FirstOrDefault().ToClrDataAddress(_target);