13 overrides of MethodHandle
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\ConstructorOnTypeBuilderInstantiation.cs (1)
52
public override RuntimeMethodHandle
MethodHandle
=> _ctor.MethodHandle;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\MethodBuilderInstantiation.cs (1)
56
public override RuntimeMethodHandle
MethodHandle
=> throw new NotSupportedException(SR.NotSupported_DynamicModule);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\MethodOnTypeBuilderInstantiation.cs (1)
64
public override RuntimeMethodHandle
MethodHandle
=> _method.MethodHandle;
System\Reflection\Emit\DynamicMethod.cs (1)
94
public override RuntimeMethodHandle
MethodHandle
System\Reflection\Runtime\MethodInfos\RuntimeConstructorInfo.cs (1)
153
public abstract override RuntimeMethodHandle
MethodHandle
{ get; }
System\Reflection\Runtime\MethodInfos\RuntimeMethodInfo.cs (1)
233
public abstract override RuntimeMethodHandle
MethodHandle
{ get; }
System.Reflection.Context (3)
System\Reflection\Context\Delegation\DelegatingConstructorInfo.cs (1)
69
public override RuntimeMethodHandle
MethodHandle
System\Reflection\Context\Delegation\DelegatingMethodInfo.cs (1)
71
public override RuntimeMethodHandle
MethodHandle
System\Reflection\Context\Virtual\VirtualMethodBase.cs (1)
41
public override RuntimeMethodHandle
MethodHandle
System.Reflection.Emit (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\MethodBuilderInstantiation.cs (1)
56
public override RuntimeMethodHandle
MethodHandle
=> throw new NotSupportedException(SR.NotSupported_DynamicModule);
System\Reflection\Emit\ArrayMethod.cs (1)
68
public override RuntimeMethodHandle
MethodHandle
=> throw new NotSupportedException(SR.NotSupported_SymbolMethod);
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Constructors\RoConstructor.cs (1)
81
public sealed override RuntimeMethodHandle
MethodHandle
=> throw new InvalidOperationException(SR.Arg_InvalidOperation_Reflection);
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
125
public sealed override RuntimeMethodHandle
MethodHandle
=> throw new InvalidOperationException(SR.Arg_InvalidOperation_Reflection);
29 references to MethodHandle
ILCompiler.Compiler (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
49
/// <see cref="System.Reflection.MethodBase.
MethodHandle
"/>
illink (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
49
/// <see cref="System.Reflection.MethodBase.
MethodHandle
"/>
ILLink.RoslynAnalyzer (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
49
/// <see cref="System.Reflection.MethodBase.
MethodHandle
"/>
Microsoft.Maui (3)
HotReload\HotReloadExtensions.cs (3)
60
public bool Equals(MethodInfo? g1, MethodInfo? g2) => g1?.
MethodHandle
== g2?.
MethodHandle
;
62
public int GetHashCode(MethodInfo obj) => obj.
MethodHandle
.GetHashCode();
Microsoft.TestPlatform.AdapterUtilities (1)
Helpers\ReflectionHelpers.MethodBase.cs (1)
23
return method.
MethodHandle
;
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\Internal\Runtime\InteropServices\ComponentActivator.cs (1)
345
functionPtr = methodInfo.
MethodHandle
.GetFunctionPointer();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\ConstructorOnTypeBuilderInstantiation.cs (1)
52
public override RuntimeMethodHandle MethodHandle => _ctor.
MethodHandle
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\MethodOnTypeBuilderInstantiation.cs (1)
64
public override RuntimeMethodHandle MethodHandle => _method.
MethodHandle
;
System.Reflection.Context (2)
System\Reflection\Context\Delegation\DelegatingConstructorInfo.cs (1)
71
get { return UnderlyingConstructor.
MethodHandle
; }
System\Reflection\Context\Delegation\DelegatingMethodInfo.cs (1)
73
get { return UnderlyingMethod.
MethodHandle
; }
System.ServiceModel.Primitives (15)
System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (9)
51
if (!_operationMap.ContainsKey(operation.SyncMethod.
MethodHandle
.Value))
53
_operationMap.Add(operation.SyncMethod.
MethodHandle
.Value, operation.Name);
59
if (!_operationMap.ContainsKey(operation.BeginMethod.
MethodHandle
.Value))
61
_operationMap.Add(operation.BeginMethod.
MethodHandle
.Value, operation.Name);
62
_operationMap.Add(operation.EndMethod.
MethodHandle
.Value, operation.Name);
68
if (!_operationMap.ContainsKey(operation.TaskMethod.
MethodHandle
.Value))
70
_operationMap.Add(operation.TaskMethod.
MethodHandle
.Value, operation.Name);
84
if (_operationMap.ContainsKey(method.
MethodHandle
.Value))
86
return _operationMap[method.
MethodHandle
.Value];
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (6)
260
return methodCall.MethodBase.
MethodHandle
.Value.Equals(_syncMethod.
MethodHandle
.Value);
272
return methodCall.MethodBase.
MethodHandle
.Value.Equals(_beginMethod.
MethodHandle
.Value);
284
return methodCall.MethodBase.
MethodHandle
.Value.Equals(_taskMethod.
MethodHandle
.Value);
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
744
result = Activator.CreateInstance(type, [target, mi.
MethodHandle
.GetFunctionPointer()]);
System.Xaml (1)
System\Xaml\Schema\XamlTypeInvoker.cs (1)
327
IntPtr constPtr = tConstInfo.
MethodHandle
.GetFunctionPointer();