示例#1
0
        private void OnActionErrorOccurred(ActionErrorEventArgs args)
        {
            ActionErrorEvent handler = this.ActionErrorOccurred;

            if (handler != null)
            {
                handler(this, args);
            }
        }
示例#2
0
 private void Web_ActionError(string obj)
 {
     ActionErrorEvent?.Invoke(obj);
 }