void IWxeCallArguments.Dispatch(IWxeExecutor executor, WxeFunction function)
        {
            ArgumentUtility.CheckNotNull("executor", executor);
            ArgumentUtility.CheckNotNull("function", function);

            executor.ExecuteFunction(function, null, new WxeCallOptions(_permaUrlOptions));
        }
Beispiel #2
0
        public override void Dispatch(IWxeExecutor executor, WxeFunction function, Control sender)
        {
            ArgumentUtility.CheckNotNull("executor", executor);
            ArgumentUtility.CheckNotNull("function", function);
            ArgumentUtility.CheckNotNull("sender", sender);

            executor.ExecuteFunction(function, sender, this);
        }