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