4 writes to _attributes
System.Reflection.Emit (4)
System\Reflection\Emit\MethodBuilderImpl.cs (4)
46
_attributes
= attributes;
186
_attributes
|= MethodAttributes.PinvokeImpl;
198
_attributes
|= MethodAttributes.SpecialName;
201
_attributes
|= MethodAttributes.HasSecurity;
4 references to _attributes
System.Reflection.Emit (4)
System\Reflection\Emit\MethodBuilderImpl.cs (4)
94
if ((
_attributes
& (MethodAttributes.RTSpecialName | MethodAttributes.SpecialName)) != (MethodAttributes.RTSpecialName | MethodAttributes.SpecialName))
157
(
_attributes
& MethodAttributes.PinvokeImpl) != 0)
162
if ((
_attributes
& MethodAttributes.Abstract) != 0)
242
public override MethodAttributes Attributes =>
_attributes
;