1 override of IsConstructedGenericType
System.Private.CoreLib (1)
System\Reflection\Runtime\TypeInfos\RuntimeConstructedGenericTypeInfo.cs (1)
30
public override bool
IsConstructedGenericType
=> true;
6 references to IsConstructedGenericType
System.Private.CoreLib (6)
Internal\Reflection\Augments\ReflectionAugments.cs (1)
440
if (runtimeTypeInfo.
IsConstructedGenericType
)
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (1)
92
Debug.Assert(!
IsConstructedGenericType
);
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (3)
57
public bool IsGenericType => IsGenericTypeDefinition ||
IsConstructedGenericType
;
398
Debug.Assert(!IsGenericTypeDefinition && !
IsConstructedGenericType
);
613
Debug.Assert(!
IsConstructedGenericType
);
System\RuntimeType.NativeAot.cs (1)
418
return GetRuntimeTypeInfo().
IsConstructedGenericType
;