9 implementations of IsValueType
Microsoft.CodeAnalysis (9)
CodeGen\PrivateImplementationDetails.cs (1)
1130public virtual bool IsValueType => false;
Emit\EditAndContinue\DeletedSourceGenericParameter.cs (1)
41public bool IsValueType => OldDefinition.IsValueType;
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
69public bool IsValueType => OldDefinition.IsValueType;
Emit\ErrorType.cs (1)
77bool Cci.ITypeReference.IsValueType
Emit\NoPia\CommonEmbeddedType.cs (1)
572bool Cci.ITypeReference.IsValueType
Emit\NoPia\CommonEmbeddedTypeParameter.cs (1)
136bool Cci.ITypeReference.IsValueType
PEWriter\InheritedTypeParameter.cs (1)
228public bool IsValueType
PEWriter\ModifiedTypeReference.cs (1)
52bool ITypeReference.IsValueType
PEWriter\RootModuleType.cs (1)
228bool 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)
576return UnderlyingNamedType.IsValueType;
PEWriter\MetadataWriter.cs (2)
3929typeReference.IsValueType); 3940encoder.Type(GetTypeHandle(typeReference), typeReference.IsValueType);
PEWriter\MetadataWriter.PortablePdb.cs (1)
232builder.WriteByte((byte)(type.IsValueType ? SignatureTypeKind.ValueType : SignatureTypeKind.Class));