8 references to FieldDefinition
System.Reflection.MetadataLoadContext (8)
System\Reflection\TypeLoading\Fields\Ecma\EcmaField.cs (8)
35protected sealed override IEnumerable<CustomAttributeData> GetTrueCustomAttributes() => FieldDefinition.GetCustomAttributes().ToTrueCustomAttributes(_module); 37protected sealed override int GetExplicitFieldOffset() => FieldDefinition.GetOffset(); 38protected sealed override MarshalAsAttribute ComputeMarshalAsAttribute() => FieldDefinition.GetMarshallingDescriptor().ToMarshalAsAttribute(_module); 61protected sealed override string ComputeName() => FieldDefinition.Name.GetString(Reader); 62protected sealed override FieldAttributes ComputeAttributes() => FieldDefinition.Attributes; 63protected sealed override Type ComputeFieldType() => FieldDefinition.DecodeSignature(_module, TypeContext); 68protected sealed override object? ComputeRawConstantValue() => FieldDefinition.GetDefaultValue().ToRawObject(Reader); 77FieldDefinition.DecodeSignature(EcmaSignatureTypeProviderForToString.Instance, TypeContext) +