2 writes to _receiverType
Microsoft.Build (2)
Evaluation\Expander.Function.cs (2)
151_receiverType = receiverType; 470_receiverType = objectInstance.GetType();
23 references to _receiverType
Microsoft.Build (23)
Evaluation\Expander.Function.cs (23)
378if (!IsStaticMethodAvailable(_receiverType, _methodMethodName)) 380ProjectErrorUtilities.ThrowInvalidProject(elementLocation, "InvalidFunctionMethodUnavailable", _methodMethodName, _receiverType.FullName); 388if (!IsInstanceMethodAvailable(_receiverType, _methodMethodName)) 390ProjectErrorUtilities.ThrowInvalidProject(elementLocation, "InvalidFunctionMethodUnavailable", _methodMethodName, _receiverType.FullName); 425if (_receiverType == typeof(System.IO.File) || _receiverType == typeof(System.IO.Directory) 426|| _receiverType == typeof(System.IO.Path)) 440if ((_receiverType == typeof(System.IO.File) || _receiverType == typeof(System.IO.Directory)) 478if (_receiverType == typeof(IntrinsicFunctions)) 496if (!WellKnownFunctions.TryExecuteWellKnownConstructorNoThrow(_receiverType, out functionResult, args)) 509wellKnownFunctionSuccess = WellKnownFunctions.TryExecuteWellKnownFunction(_methodMethodName, _receiverType, _fileSystem, out functionResult, objectInstance, args); 514wellKnownFunctionSuccess = WellKnownFunctions.TryExecuteWellKnownFunctionWithPropertiesParam(_methodMethodName, _receiverType, _loggingContext, properties, out functionResult, objectInstance, args); 539IEnumerable<MethodInfo> methods = _receiverType.GetMethods(_bindingFlags).Where(m => m.Name.Equals(_methodMethodName) && m.GetParameters().Length == args.Length); 545functionResult = _receiverType.InvokePublicMember(_methodMethodName, _bindingFlags, objectInstance, args); 654return _receiverType.InvokePublicMember(_methodMethodName, _bindingFlags, objectInstance, args) ?? "null"; 1099string typeName = _receiverType.FullName; 1103if (_receiverType == typeof(IntrinsicFunctions)) 1193foreach (MethodInfo method in _receiverType.GetMethods(_bindingFlags)) 1256memberInfo = _receiverType.GetConstructor(types); 1274members = _receiverType.GetConstructors(); 1276else if (_receiverType == typeof(IntrinsicFunctions) && IntrinsicFunctionOverload.IsKnownOverloadMethodName(_methodMethodName)) 1291members = _receiverType.GetMethods(_bindingFlags).Where(m => string.Equals(m.Name, _methodMethodName, StringComparison.OrdinalIgnoreCase));