IronRuby.Builtins.RubyMethod.RubyMethod C# (CSharp) Method

RubyMethod() public method

public RubyMethod ( object target, IronRuby.Runtime.Calls.RubyMemberInfo info, string name ) : System.Linq.Expressions
target object
info IronRuby.Runtime.Calls.RubyMemberInfo
name string
return System.Linq.Expressions
        public RubyMethod(object target, RubyMemberInfo/*!*/ info, string/*!*/ name) {
            ContractUtils.RequiresNotNull(info, "info");
            ContractUtils.RequiresNotNull(name, "name");
                        
            _target = target;
            _info = info;
            _name = name;
        }