13 references to HasFieldMarshal
Microsoft.CodeAnalysis (1)
PEWriter\MetadataWriter.cs (1)
793
result |= FieldAttributes.
HasFieldMarshal
;
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Metadata\PE\PEFieldSymbol.cs (3)
238
return ((_flags & FieldAttributes.
HasFieldMarshal
) != 0);
246
if ((_flags & FieldAttributes.
HasFieldMarshal
) == 0)
259
if ((_flags & FieldAttributes.
HasFieldMarshal
) == 0)
Microsoft.CodeAnalysis.Test.Utilities (3)
Metadata\MetadataValidation.cs (2)
91
Assert.NotEqual(0, (int)(field.Attributes & FieldAttributes.
HasFieldMarshal
));
99
Assert.Equal(0, (int)(field.Attributes & FieldAttributes.
HasFieldMarshal
));
Platform\Custom\MetadataSignatureHelper.cs (1)
248
if ((attributes & FieldAttributes.
HasFieldMarshal
) != 0)
Microsoft.CodeAnalysis.VisualBasic (3)
Symbols\Metadata\PE\PEFieldSymbol.vb (3)
327
Return (_flags And FieldAttributes.
HasFieldMarshal
) <> 0
333
If (_flags And FieldAttributes.
HasFieldMarshal
) = 0 Then
343
If (_flags And FieldAttributes.
HasFieldMarshal
) = 0 Then
System.Reflection.Emit (2)
System\Reflection\Emit\FieldBuilderImpl.cs (1)
71
_attributes |= FieldAttributes.
HasFieldMarshal
;
System\Reflection\Emit\ModuleBuilderImpl.cs (1)
647
if (field.Attributes.HasFlag(FieldAttributes.
HasFieldMarshal
) && field._marshallingData != null)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Fields\RoField.cs (1)
67
if (0 != (Attributes & FieldAttributes.
HasFieldMarshal
))