29 references to Value
System.Private.CoreLib (14)
src\System\Reflection\Emit\DynamicILGenerator.cs (5)
787
methodHandle = ((RuntimeMethodHandle)handle).
Value
;
800
methodHandle = dm.GetMethodDescriptor().
Value
;
806
methodHandle = gmi.m_methodHandle.
Value
;
822
methodHandle = vaMeth.m_method!.MethodHandle.
Value
;
827
methodHandle = vaMeth.m_dynamicMethod.GetMethodDescriptor().
Value
;
src\System\Reflection\MethodBase.CoreCLR.cs (1)
54
private IntPtr GetMethodDesc() { return MethodHandle.
Value
; }
src\System\RuntimeHandles.cs (6)
1000
return HashCode.Combine(
Value
);
1010
return handle.
Value
==
Value
;
1030
public static IntPtr ToIntPtr(RuntimeMethodHandle value) => value.
Value
;
1038
return handle.
Value
==
Value
;
src\System\RuntimeType.CoreCLR.cs (2)
228
if (candidate is RuntimeMethodInfo candidateRMI && candidateRMI.MethodHandle.
Value
== method.Value)
243
if (candidate is RuntimeConstructorInfo candidateRCI && candidateRCI.MethodHandle.
Value
== method.Value)
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
);