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