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