8 references to Serializable
mscorlib (3)
system\serializableattribute.cs (2)
26
return (type.Attributes & TypeAttributes.
Serializable
) == TypeAttributes.
Serializable
? new SerializableAttribute() : null;
system\type.cs (1)
1122
if ((GetAttributeFlagsImpl() & TypeAttributes.
Serializable
) != 0)
System.Data.Entity (3)
System\Data\Objects\Internal\EntityProxyFactory.cs (3)
707
if ((BaseType.Attributes & TypeAttributes.
Serializable
) == TypeAttributes.
Serializable
)
709
proxyTypeAttributes |= TypeAttributes.
Serializable
;
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (2)
104
this.typeAttributes = elementType.Attributes & TypeAttributes.VisibilityMask | TypeAttributes.Class | TypeAttributes.Sealed | TypeAttributes.
Serializable
;
137
this.typeAttributes |= TypeAttributes.
Serializable
;