Jint.Native.ClrFunction.ClrFunction C# (CSharp) Method

ClrFunction() public method

public ClrFunction ( Delegate d, JsObject prototype ) : System
d System.Delegate
prototype JsObject
return System
        public ClrFunction(Delegate d, JsObject prototype)
            : base(prototype)
        {
            Delegate = d;
            Parameters = d.Method.GetParameters();
        }