22 references to Sealed
mscorlib (7)
system\reflection\emit\enumbuilder.cs (1)
413
m_typeBuilder = new TypeBuilder(name, visibility | TypeAttributes.
Sealed
, typeof(System.Enum), null, module, PackingSize.Unspecified, TypeBuilder.UnspecifiedTypeSize, null);
system\reflection\emit\typebuilder.cs (3)
885
typeAttributes = TypeAttributes.Public | TypeAttributes.ExplicitLayout | TypeAttributes.Class | TypeAttributes.
Sealed
| TypeAttributes.AnsiClass;
2364
if (m_constructorCount == 0 && ((m_iAttr & TypeAttributes.Interface) == 0) && !IsValueType && ((m_iAttr & (TypeAttributes.Abstract | TypeAttributes.
Sealed
)) != (TypeAttributes.Abstract | TypeAttributes.
Sealed
)))
system\runtime\interopservices\tceadaptergen\eventproviderwriter.cs (1)
36
TypeAttributes.
Sealed
| TypeAttributes.NotPublic,
system\runtime\interopservices\tceadaptergen\eventsinkhelperwriter.cs (1)
38
TypeAttributes.
Sealed
| TypeAttributes.Public,
system\type.cs (1)
1091
get {return ((GetAttributeFlagsImpl() & TypeAttributes.
Sealed
) != 0);}
PresentationBuildTasks (1)
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (1)
2664
ctdClass.TypeAttributes = TypeAttributes.Public | TypeAttributes.
Sealed
;
System (6)
compmod\microsoft\csharp\csharpcodeprovider.cs (2)
2815
if ((attributes & TypeAttributes.
Sealed
) == TypeAttributes.
Sealed
) {
compmod\microsoft\visualbasic\VBCodeProvider.cs (2)
976
if ((attributes & TypeAttributes.
Sealed
) == TypeAttributes.
Sealed
) {
compmod\system\codedom\compiler\CodeGenerator.cs (2)
1166
if ((attributes & TypeAttributes.
Sealed
) == TypeAttributes.
Sealed
) {
System.Core (1)
Microsoft\Scripting\Compiler\AssemblyGen.cs (1)
127
TypeAttributes.Class | TypeAttributes.Public | TypeAttributes.
Sealed
| TypeAttributes.AnsiClass | TypeAttributes.AutoClass
System.Data.Entity (1)
System\Data\Objects\Internal\EntityProxyFactory.cs (1)
706
TypeAttributes proxyTypeAttributes = TypeAttributes.Class | TypeAttributes.Public | TypeAttributes.
Sealed
;
System.Data.Entity.Design (1)
System\Data\Entity\Design\EntityViewGeneration\EntityViewGenerator.cs (1)
672
typeDecl.TypeAttributes = TypeAttributes.
Sealed
| TypeAttributes.Public;
System.Workflow.ComponentModel (3)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
104
this.typeAttributes = elementType.Attributes & TypeAttributes.VisibilityMask | TypeAttributes.Class | TypeAttributes.
Sealed
| TypeAttributes.Serializable;
AuthoringOM\Compiler\TypeSystem\Helper.cs (2)
116
typeAttributes |= TypeAttributes.
Sealed
;
118
typeAttributes |= (TypeAttributes.Abstract | TypeAttributes.
Sealed
);
System.WorkflowServices (1)
System\Workflow\Activities\ContractType.cs (1)
65
TypeAttributes.
Sealed
|
System.Xml (1)
System\Xml\Serialization\XmlSerializationILGen.cs (1)
302
TypeAttributes.Public | TypeAttributes.
Sealed
| TypeAttributes.BeforeFieldInit,