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