Implemented interface member:
property
IsSealed
System.Runtime.InteropServices._Type.IsSealed
17 references to IsSealed
mscorlib (4)
system\diagnostics\eventing\StubEnvironment.cs (1)
205public static bool IsSealed(this Type type) { return type.IsSealed; }
system\reflection\customattribute.cs (2)
1346if (!inherit || (caType.IsSealed && !CustomAttribute.GetAttributeUsage(caType).Inherited)) 1447if (!inherit || (caType.IsSealed && !CustomAttribute.GetAttributeUsage(caType).Inherited))
system\runtime\serialization\formatters\binary\binaryutilclasses.cs (1)
813NIisSealed = NItype.IsSealed;
System.AddIn (1)
System\Addin\Hosting\Store\AddInBase.cs (1)
44if (type.IsClass && type.IsSealed)
System.Core (1)
Microsoft\Scripting\Ast\TypeBinaryExpression.cs (1)
95if (cType.IsSealed && (cType == _typeOperand)) {
System.Data.Entity (1)
System\Data\Objects\Internal\EntityProxyFactory.cs (1)
574ospaceEntityType.ClrType.IsSealed ||
System.Runtime.Remoting (1)
metadata\wsdlwriter.cs (1)
1207_bSealed = _type.IsSealed;
System.Runtime.Serialization (1)
System\Runtime\Serialization\CodeExporter.cs (1)
1071if (baseType.IsSealed)
System.ServiceModel (1)
System\ServiceModel\Description\ServiceReflector.cs (1)
1010return ((!type.IsSealed) || typeof(IDisposable).IsAssignableFrom(type));
System.Web.Services (1)
System\Web\Services\Diagnostics\TraceUtility.cs (1)
353if (!(type.IsAbstract && type.IsSealed)) {
System.Workflow.Activities (3)
Rules\RuleValidation.cs (3)
1166if ((fromType.IsClass) && (!fromType.IsSealed)) 1176if ((toType.IsClass) && ((!toType.IsSealed) || (InterfaceMatch(toType.GetInterfaces(), fromType)))) 3392if ((type != null) && (type.IsPublic || type.IsNestedPublic) && (type.IsSealed) && (IsMarkedExtension(type)))
System.Workflow.ComponentModel (1)
AuthoringOM\Design\CustomActivityDesigner.cs (1)
699if (TypeProvider.IsAssignable(typeof(Activity), type) && type.IsPublic && !type.IsSealed && !type.IsAbstract && !(type is DesignTimeType))
System.Xml (2)
System\Xml\Serialization\Types.cs (2)
700else if (directReference && (type.IsAbstract && type.IsSealed)) { 854for (Type t = type.DeclaringType; t != null && !t.ContainsGenericParameters && !(t.IsAbstract && t.IsSealed); t = t.DeclaringType)