19 references to Value
System.Private.CoreLib (3)
System\Runtime\CompilerServices\RuntimeHelpers.NativeAot.cs (2)
218if (method.Value == IntPtr.Zero) 224if (method.Value == IntPtr.Zero)
System\RuntimeMethodHandle.cs (1)
86public static IntPtr ToIntPtr(RuntimeMethodHandle value) => value.Value;
System.Private.TypeLoader (1)
Internal\Runtime\TypeLoader\TypeLoaderEnvironment.LdTokenResultLookup.cs (1)
238MethodHandleInfo* methodData = (MethodHandleInfo*)runtimeMethodHandle.Value;
System.ServiceModel.Primitives (15)
System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (9)
51if (!_operationMap.ContainsKey(operation.SyncMethod.MethodHandle.Value)) 53_operationMap.Add(operation.SyncMethod.MethodHandle.Value, operation.Name); 59if (!_operationMap.ContainsKey(operation.BeginMethod.MethodHandle.Value)) 61_operationMap.Add(operation.BeginMethod.MethodHandle.Value, operation.Name); 62_operationMap.Add(operation.EndMethod.MethodHandle.Value, operation.Name); 68if (!_operationMap.ContainsKey(operation.TaskMethod.MethodHandle.Value)) 70_operationMap.Add(operation.TaskMethod.MethodHandle.Value, operation.Name); 84if (_operationMap.ContainsKey(method.MethodHandle.Value)) 86return _operationMap[method.MethodHandle.Value];
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (6)
260return methodCall.MethodBase.MethodHandle.Value.Equals(_syncMethod.MethodHandle.Value); 272return methodCall.MethodBase.MethodHandle.Value.Equals(_beginMethod.MethodHandle.Value); 284return methodCall.MethodBase.MethodHandle.Value.Equals(_taskMethod.MethodHandle.Value);