13 writes to _attributes
System.Reflection.Emit (13)
System\Reflection\Emit\TypeBuilderImpl.cs (13)
59
_attributes
= typeAttributes;
481
_attributes
|= TypeAttributes.SpecialName;
485
_attributes
|= TypeAttributes.Serializable;
489
_attributes
|= TypeAttributes.Import;
492
_attributes
|= TypeAttributes.WindowsRuntime;
495
_attributes
|= TypeAttributes.HasSecurity;
512
_attributes
&= ~TypeAttributes.LayoutMask;
513
_attributes
|= layoutKind switch
533
_attributes
&= ~(TypeAttributes.UnicodeClass | TypeAttributes.AutoClass);
536
_attributes
&= ~TypeAttributes.AutoClass;
537
_attributes
|= TypeAttributes.UnicodeClass;
540
_attributes
&= ~TypeAttributes.UnicodeClass;
541
_attributes
|= TypeAttributes.AutoClass;
9 references to _attributes
System.Reflection.Emit (9)
System\Reflection\Emit\TypeBuilderImpl.cs (9)
115
if (_constructorDefinitions.Count == 0 && (
_attributes
& TypeAttributes.Interface) == 0 && !IsValueType &&
116
((
_attributes
& (TypeAttributes.Abstract | TypeAttributes.Sealed)) != (TypeAttributes.Abstract | TypeAttributes.Sealed)))
145
if ((
_attributes
& TypeAttributes.Abstract) == 0)
174
if ((
_attributes
& TypeAttributes.Interface) == TypeAttributes.Interface && (attributes & MethodAttributes.Static) != MethodAttributes.Static)
200
if ((
_attributes
& TypeAttributes.Interface) == TypeAttributes.Interface)
388
if ((
_attributes
& TypeAttributes.ClassSemanticsMask) == TypeAttributes.Interface)
574
if ((
_attributes
& TypeAttributes.Interface) != TypeAttributes.Interface)
580
if ((
_attributes
& TypeAttributes.Abstract) == 0)
652
protected override TypeAttributes GetAttributeFlagsImpl() =>
_attributes
;