13 references to TypeClassification
System.Private.CoreLib (13)
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (13)
555
public bool IsPrimitive => (Classification &
TypeClassification
.IsPrimitive) != 0;
557
public bool IsValueType => (Classification &
TypeClassification
.IsValueType) != 0;
559
public bool IsEnum => 0 != (Classification &
TypeClassification
.IsEnum);
645
return 0 != (Classification &
TypeClassification
.IsDelegate);
793
private
TypeClassification
Classification
835
TypeClassification
classification =
TypeClassification
.Computed;
843
classification |=
TypeClassification
.IsEnum |
TypeClassification
.IsValueType;
845
classification |=
TypeClassification
.IsDelegate;
848
classification |=
TypeClassification
.IsValueType;
850
classification |=
TypeClassification
.IsPrimitive;
869
private volatile
TypeClassification
_lazyClassification;