4 writes to _attributes
System.Reflection.Emit (4)
System\Reflection\Emit\MethodBuilderImpl.cs (4)
45
_attributes
= attributes;
184
_attributes
|= MethodAttributes.PinvokeImpl;
195
_attributes
|= MethodAttributes.SpecialName;
198
_attributes
|= MethodAttributes.HasSecurity;
4 references to _attributes
System.Reflection.Emit (4)
System\Reflection\Emit\MethodBuilderImpl.cs (4)
93
if ((
_attributes
& (MethodAttributes.RTSpecialName | MethodAttributes.SpecialName)) != (MethodAttributes.RTSpecialName | MethodAttributes.SpecialName))
156
(
_attributes
& MethodAttributes.PinvokeImpl) != 0)
161
if ((
_attributes
& MethodAttributes.Abstract) != 0)
237
public override MethodAttributes Attributes =>
_attributes
;