10 references to Serializable
ILAssembler (1)
GrammarVisitor.cs (1)
1044return new((new(TypeAttributes.Serializable), null, false));
Microsoft.CodeAnalysis (1)
PEWriter\MetadataWriter.cs (1)
1518result |= TypeAttributes.Serializable;
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
2882get { return (_flags & TypeAttributes.Serializable) != 0; }
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Metadata\PE\PENamedTypeSymbol.vb (1)
222Return (_flags And TypeAttributes.Serializable) <> 0
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\RuntimeCustomAttributeData.cs (2)
1508if ((type.Attributes & TypeAttributes.Serializable) != 0) 1527if ((type.Attributes & TypeAttributes.Serializable) != 0)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (1)
18if ((GetAttributeFlagsImpl() & TypeAttributes.Serializable) != 0)
System\Reflection\Runtime\TypeInfos\RuntimeArrayTypeInfo.cs (1)
42TypeAttributes.AutoLayout | TypeAttributes.AnsiClass | TypeAttributes.Class | TypeAttributes.Public | TypeAttributes.Sealed | TypeAttributes.Serializable;
System.Reflection.Emit (1)
System\Reflection\Emit\TypeBuilderImpl.cs (1)
473_attributes |= TypeAttributes.Serializable;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoArrayType.cs (1)
70protected sealed override TypeAttributes ComputeAttributeFlags() => TypeAttributes.AutoLayout | TypeAttributes.AnsiClass | TypeAttributes.Class | TypeAttributes.Public | TypeAttributes.Sealed | TypeAttributes.Serializable;