Implemented interface member:
property
MethodHandle
System.Runtime.InteropServices._MethodBase.MethodHandle
22 overrides of MethodHandle
mscorlib (10)
system\reflection\ConstructorInfo.cs (1)
509public override RuntimeMethodHandle MethodHandle
system\reflection\emit\constructorbuilder.cs (1)
139public override RuntimeMethodHandle MethodHandle
system\reflection\emit\dynamicmethod.cs (2)
613public override RuntimeMethodHandle MethodHandle { get { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_NotAllowedInDynamicMethod")); } } 896public override RuntimeMethodHandle MethodHandle {
system\reflection\emit\methodbuilder.cs (1)
597public override RuntimeMethodHandle MethodHandle
system\reflection\emit\methodbuilderinstantiation.cs (1)
65public override RuntimeMethodHandle MethodHandle { get { throw new NotSupportedException(Environment.GetResourceString("NotSupported_DynamicModule")); } }
system\reflection\emit\symbolmethod.cs (1)
123public override RuntimeMethodHandle MethodHandle
system\reflection\emit\xxxontypebuilderinstantiation.cs (2)
78public override RuntimeMethodHandle MethodHandle { get { return m_method.MethodHandle; } } 175public override RuntimeMethodHandle MethodHandle { get { return m_ctor.MethodHandle; } }
system\reflection\methodinfo.cs (1)
616public override RuntimeMethodHandle MethodHandle
System (1)
net\System\Net\_AutoWebProxyScriptHelper.cs (1)
124public override RuntimeMethodHandle MethodHandle {
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1955public override RuntimeMethodHandle MethodHandle { get { return _info.MethodHandle; } }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1955public override RuntimeMethodHandle MethodHandle { get { return _info.MethodHandle; } }
System.Workflow.Activities (3)
Rules\RuleValidation.cs (3)
242public override RuntimeMethodHandle MethodHandle 359public override RuntimeMethodHandle MethodHandle 748public override RuntimeMethodHandle MethodHandle
System.Workflow.ComponentModel (5)
AuthoringOM\Compiler\TypeSystem\MethodInfo.cs (2)
67public override RuntimeMethodHandle MethodHandle 228public override RuntimeMethodHandle MethodHandle
AuthoringOM\Compiler\TypeSystem\PropertyInfo.cs (1)
337public override RuntimeMethodHandle MethodHandle
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (2)
835public override RuntimeMethodHandle MethodHandle 1124public override RuntimeMethodHandle MethodHandle
System.WorkflowServices (1)
System\Workflow\Activities\ContractMethodInfo.cs (1)
106public override RuntimeMethodHandle MethodHandle
35 references to MethodHandle
mscorlib (8)
system\diagnostics\stacktrace.cs (1)
292rgMethodHandle[i] = rgMethodBase[i].MethodHandle.Value;
system\reflection\emit\xxxontypebuilderinstantiation.cs (2)
78public override RuntimeMethodHandle MethodHandle { get { return m_method.MethodHandle; } } 175public override RuntimeMethodHandle MethodHandle { get { return m_ctor.MethodHandle; } }
system\reflection\methodbase.cs (1)
139private IntPtr GetMethodDesc() { return MethodHandle.Value; }
system\runtime\remoting\channelsinkstacks.cs (1)
435s.PrivateProcessMessage(_asyncEnd.MethodHandle,
system\runtime\remoting\stackbuildersink.cs (2)
145mb.MethodHandle, 240ret = PrivateProcessMessage(mb.MethodHandle,
system\runtimehandles.cs (1)
1057m_value = m.MethodHandle.m_value;
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1955public override RuntimeMethodHandle MethodHandle { get { return _info.MethodHandle; } }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1955public override RuntimeMethodHandle MethodHandle { get { return _info.MethodHandle; } }
System.Data.Entity (3)
System\Data\Metadata\Edm\EdmProperty.cs (2)
70PropertyGetterHandle = ((null != method) ? method.MethodHandle : default(System.RuntimeMethodHandle)); 73PropertySetterHandle = ((null != method) ? method.MethodHandle : default(System.RuntimeMethodHandle));
System\Data\Metadata\Edm\NavigationProperty.cs (1)
53PropertyGetterHandle = ((null != method) ? method.MethodHandle : default(System.RuntimeMethodHandle));
System.ServiceModel (15)
System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (9)
50if (!operationMap.ContainsKey(operation.SyncMethod.MethodHandle)) 51operationMap.Add(operation.SyncMethod.MethodHandle, operation.Name); 56if (!operationMap.ContainsKey(operation.BeginMethod.MethodHandle)) 58operationMap.Add(operation.BeginMethod.MethodHandle, operation.Name); 59operationMap.Add(operation.EndMethod.MethodHandle, operation.Name); 65if (!operationMap.ContainsKey(operation.TaskMethod.MethodHandle)) 67operationMap.Add(operation.TaskMethod.MethodHandle, operation.Name); 81if (this.operationMap.ContainsKey(method.MethodHandle)) 82return operationMap[method.MethodHandle];
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (6)
350return (methodCall.MethodBase.MethodHandle == this.syncMethod.MethodHandle); 361return (methodCall.MethodBase.MethodHandle == this.beginMethod.MethodHandle); 372return (methodCall.MethodBase.MethodHandle == this.taskMethod.MethodHandle);
System.Web (2)
UI\TemplateControl.cs (1)
458IntPtr functionPtr = methodInfo.MethodHandle.GetFunctionPointer();
Util\FastDelegateCreator.cs (1)
29return BindTo(obj, method.MethodHandle.GetFunctionPointer());
System.Workflow.Activities (3)
LocalService\WorkflowMessageEventHandler.cs (1)
96return (Delegate)Activator.CreateInstance(eventHandlerType, new object[] { this, mHandler.MethodHandle.GetFunctionPointer() });
Rules\RuleValidation.cs (2)
244get { return actualMethod.MethodHandle; } 361get { return actualMethod.MethodHandle; }
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (2)
837get { return this.ctorInfo.MethodHandle; } 1126get { return this.methodInfo.MethodHandle; }