Mono.Cecil\TypeDefinition.cs (27)
46 attributes = (uint) value;
307 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttributes.NotPublic, value); }
312 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttributes.Public, value); }
317 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttributes.NestedPublic, value); }
322 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttributes.NestedPrivate, value); }
327 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttributes.NestedFamily, value); }
332 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttributes.NestedAssembly, value); }
337 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttributes.NestedFamANDAssem, value); }
342 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.VisibilityMask, (uint) TypeAttributes.NestedFamORAssem, value); }
347 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.LayoutMask, (uint) TypeAttributes.AutoLayout, value); }
352 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.LayoutMask, (uint) TypeAttributes.SequentialLayout, value); }
357 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.LayoutMask, (uint) TypeAttributes.ExplicitLayout, value); }
362 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.ClassSemanticMask, (uint) TypeAttributes.Class, value); }
367 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.ClassSemanticMask, (uint) TypeAttributes.Interface, value); }
372 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Abstract, value); }
377 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Sealed, value); }
382 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.SpecialName, value); }
387 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Import, value); }
392 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Serializable, value); }
397 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.WindowsRuntime, value); }
402 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.StringFormatMask, (uint) TypeAttributes.AnsiClass, value); }
407 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.StringFormatMask, (uint) TypeAttributes.UnicodeClass, value); }
412 set { attributes = attributes.SetMaskedAttributes ((uint) TypeAttributes.StringFormatMask, (uint) TypeAttributes.AutoClass, value); }
417 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.BeforeFieldInit, value); }
422 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.RTSpecialName, value); }
427 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.HasSecurity, value); }
482 this.attributes = (uint) attributes;