9 implementations of IsValueType
Microsoft.CodeAnalysis (9)
CodeGen\PrivateImplementationDetails.cs (1)
606public override bool IsValueType => true;
Emit\EditAndContinue\DeletedSourceGenericParameter.cs (1)
41public bool IsValueType => OldDefinition.IsValueType;
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
69public bool IsValueType => OldDefinition.IsValueType;
Emit\ErrorType.cs (1)
76bool Cci.ITypeReference.IsValueType
Emit\NoPia\CommonEmbeddedType.cs (1)
571bool Cci.ITypeReference.IsValueType
Emit\NoPia\CommonEmbeddedTypeParameter.cs (1)
135bool Cci.ITypeReference.IsValueType
PEWriter\InheritedTypeParameter.cs (1)
229public bool IsValueType
PEWriter\ModifiedTypeReference.cs (1)
50bool ITypeReference.IsValueType
PEWriter\RootModuleType.cs (1)
226bool ITypeReference.IsValueType
6 references to IsValueType
Microsoft.CodeAnalysis (6)
Emit\EditAndContinue\DeletedSourceGenericParameter.cs (1)
41public bool IsValueType => OldDefinition.IsValueType;
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
69public bool IsValueType => OldDefinition.IsValueType;
Emit\NoPia\CommonEmbeddedType.cs (1)
575return UnderlyingNamedType.IsValueType;
PEWriter\MetadataWriter.cs (2)
3917typeReference.IsValueType); 3928encoder.Type(GetTypeHandle(typeReference), typeReference.IsValueType);
PEWriter\MetadataWriter.PortablePdb.cs (1)
232builder.WriteByte((byte)(type.IsValueType ? SignatureTypeKind.ValueType : SignatureTypeKind.Class));