10 writes to Attributes
Mono.Cecil (10)
Mono.Cecil\WindowsRuntimeProjections.cs (10)
408
type.
Attributes
|= TypeAttributes.WindowsRuntime | TypeAttributes.Import;
412
type.
Attributes
|= TypeAttributes.WindowsRuntime | TypeAttributes.Sealed;
416
type.
Attributes
= type.Attributes & ~TypeAttributes.SpecialName | TypeAttributes.Public;
421
type.
Attributes
= type.Attributes & ~TypeAttributes.Public | TypeAttributes.Import;
426
type.
Attributes
= type.Attributes & ~TypeAttributes.Public | TypeAttributes.Import;
430
type.
Attributes
= type.Attributes & ~TypeAttributes.Public;
434
type.
Attributes
|= TypeAttributes.WindowsRuntime | TypeAttributes.Import;
461
type.
Attributes
|= TypeAttributes.Abstract;
464
type.
Attributes
&= ~TypeAttributes.Public;
477
type.
Attributes
= projection.Attributes;
11 references to Attributes
illink (1)
Linker\TypeDefinitionExtensions.cs (1)
31
return (td.
Attributes
& TypeAttributes.Serializable) != 0;
Mono.Cecil (9)
Mono.Cecil\AssemblyReader.cs (1)
811
if (IsNested (type.
Attributes
))
Mono.Cecil\AssemblyWriter.cs (1)
1459
type.
Attributes
,
Mono.Cecil\WindowsRuntimeProjections.cs (7)
28
Attributes = type.
Attributes
;
373
if ((type.
Attributes
& (TypeAttributes.VisibilityMask | TypeAttributes.Interface)) != TypeAttributes.Public)
394
if ((type.
Attributes
& (TypeAttributes.VisibilityMask | TypeAttributes.SpecialName)) != TypeAttributes.SpecialName)
416
type.Attributes = type.
Attributes
& ~TypeAttributes.SpecialName | TypeAttributes.Public;
421
type.Attributes = type.
Attributes
& ~TypeAttributes.Public | TypeAttributes.Import;
426
type.Attributes = type.
Attributes
& ~TypeAttributes.Public | TypeAttributes.Import;
430
type.Attributes = type.
Attributes
& ~TypeAttributes.Public;
Mono.Cecil.Pdb (1)
Mono.Cecil.Pdb\ModuleMetadata.cs (1)
500
*pdwTypeDefFlags = (uint) type.
Attributes
;