void IWxeCallArguments.Dispatch(IWxeExecutor executor, WxeFunction function) { ArgumentUtility.CheckNotNull("executor", executor); ArgumentUtility.CheckNotNull("function", function); executor.ExecuteFunction(function, null, new WxeCallOptions(_permaUrlOptions)); }
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); }