4 overrides of IsConstructedGenericMethod
System.Private.CoreLib (2)
System\Reflection\Runtime\MethodInfos\RuntimeConstructorInfo.cs (1)
110public sealed override bool IsConstructedGenericMethod
System\Reflection\Runtime\MethodInfos\RuntimeMethodInfo.cs (1)
169public abstract override bool IsConstructedGenericMethod
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Constructors\RoConstructor.cs (1)
40public sealed override bool IsConstructedGenericMethod => false;
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
48public abstract override bool IsConstructedGenericMethod { get; }
5 references to IsConstructedGenericMethod
System.Private.CoreLib (1)
System\Reflection\Runtime\MethodInfos\RuntimeMethodInfo.cs (1)
114if (method.IsConstructedGenericMethod)
System.Private.Reflection.Execution (2)
Internal\Reflection\Execution\ExecutionEnvironmentImplementation.Runtime.cs (1)
104resourceName = methodBase.IsConstructedGenericMethod ? SR.MakeGenericMethod_NoMetadata : SR.Object_NotInvokable;
Internal\Reflection\Execution\PayForPlayExperience\MissingMetadataExceptionCreator.cs (1)
28if (method.IsConstructedGenericMethod)
System.Reflection.Emit (2)
System\Reflection\Emit\ModuleBuilderImpl.cs (2)
757if (method.IsConstructedGenericMethod) 1194private bool IsConstructedFromMethodBuilderOrTypeBuilder(MethodInfo method) => method.IsConstructedGenericMethod &&