6 writes to typeAttributes
System.Workflow.ComponentModel (6)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (6)
74this.typeAttributes = default(TypeAttributes); 104this.typeAttributes = elementType.Attributes & TypeAttributes.VisibilityMask | TypeAttributes.Class | TypeAttributes.Sealed | TypeAttributes.Serializable; 110this.typeAttributes = TypeAttributes.AnsiClass; 130this.typeAttributes |= codeDomType.TypeAttributes & ~TypeAttributes.Public; 132this.typeAttributes |= Helper.ConvertToTypeAttributes(codeDomType.Attributes, this.declaringType); 137this.typeAttributes |= TypeAttributes.Serializable;
1 reference to typeAttributes
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
979return typeAttributes;