DotNetWebToolkit.Cil2Js.Output.ExprJsDelegateInvoke.ExprJsDelegateInvoke C# (CSharp) Method

ExprJsDelegateInvoke() public method

public ExprJsDelegateInvoke ( Ctx ctx, Expr methodToInvoke, IEnumerable args ) : System
ctx DotNetWebToolkit.Cil2Js.Ast.Ctx
methodToInvoke Expr
args IEnumerable
return System
        public ExprJsDelegateInvoke(Ctx ctx, Expr methodToInvoke, IEnumerable<Expr> args)
            : base(ctx) {
            this.MethodToInvoke = methodToInvoke;
            this.Args = args;
        }
ExprJsDelegateInvoke