8 references to Method
System.Private.CoreLib (3)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (3)
3306
Debug.Assert(hType == HandleType.
Method
|| hType == HandleType.Null);
3307
_value = (value & 0x01FFFFFF) | (((int)HandleType.
Method
) << 25);
3340
if ((HandleType)((uint)_value >> 25) != HandleType.
Method
)
System.Private.Reflection.Execution (2)
Internal\Reflection\Execution\ExecutionEnvironmentImplementation.MappingTables.cs (1)
688
(((int)HandleType.
Method
<< 25) | (int)entryMethodHandleOrNameAndSigRaw).AsMethodHandle();
Internal\Reflection\Execution\MetadataReaderExtensions.cs (1)
22
Debug.Assert((HandleType)((uint)i >> 25) == HandleType.
Method
);
System.Private.TypeLoader (3)
Internal\Runtime\TypeLoader\TypeLoaderEnvironment.ConstructedGenericMethodsLookup.cs (2)
170
int token = ((int)HandleType.
Method
<< 25) | (flagsAndToken & ~(GenericMethodsHashtableConstants.IsAsyncVariant | GenericMethodsHashtableConstants.IsReturnDroppingAsyncThunk));
454
int token = ((int)HandleType.
Method
<< 25) | (flagsAndToken & ~(GenericMethodsHashtableConstants.IsAsyncVariant | GenericMethodsHashtableConstants.IsReturnDroppingAsyncThunk));
Internal\Runtime\TypeLoader\TypeLoaderEnvironment.Metadata.cs (1)
812
Handle entryMethodHandle = (((uint)HandleType.
Method
<< 25) | entryParser.GetUnsigned()).AsHandle();