Example #1
0
        /// <summary>
        /// Searches for the specified method, using the specified binding constraints.
        /// </summary>
        /// <param name="type">The <see cref="Type"/> to search for the method in.</param>
        /// <param name="name">The name of the method to find.</param>
        /// <param name="flags">A bitmask comprised of one or more <see cref="BindingFlags"/> that specify how the search is conducted.</param>
        /// <param name="arguments">The arguments.</param>
        /// <returns>
        /// An <see cref="IMethodAccessor"/> instance for the method if found; otherwise <c>null</c>.
        /// </returns>
        public static IMethodAccessor FindMethod(Type type, string name, BindingFlags flags, params object[] arguments)
        {
            if (type == null)
            {
                throw new ArgumentNullException("type");
            }
            if (string.IsNullOrEmpty(name))
            {
                throw new ArgumentNullException("name");
            }

            TypeAccessor typeAccessor = TypeAccessor.GetAccessor(type);

            Type[] types = arguments
                           .Select(a => a == null ? typeof(object) : a.GetType())
                           .ToArray();

            var methodAccessor = typeAccessor.FindMethod(name, types, flags);

            return(methodAccessor);
        }
Example #2
0
        /// <summary>
        /// Provides the implementation for operations that invoke a member. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations such as calling a method.
        /// </summary>
        /// <param name="binder">Provides information about the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the statement sampleObject.SampleMethod(100), where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Name returns "SampleMethod". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
        /// <param name="args">The arguments that are passed to the object member during the invoke operation. For example, for the statement sampleObject.SampleMethod(100), where sampleObject is derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, <paramref name="args[0]"/> is equal to 100.</param>
        /// <param name="result">The result of the member invocation.</param>
        /// <returns>
        /// true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)
        /// </returns>
        public override bool TryInvokeMember(InvokeMemberBinder binder, object[] args, out object result)
        {
            result = null;

            var types  = args.Select(a => a == null ? typeof(object) : a.GetType()).ToArray();
            var method = _typeAccessor.FindMethod(binder.Name, types, _flags);

            if (method == null)
            {
                return(SafeMode);
            }

            var value = method.Invoke(_wrapped, args);

            if (value == null)
            {
                return(true);
            }

            result = new DynamicProxy(value, SafeMode);
            return(true);
        }