public DomainActionPreCallEventArgs(DomainAction action, object[] arguments)
 {
     this.Action      = action;
     this.Arguments   = arguments;
     this.Allow       = true; //默认是允许执行的
     this.ReturnValue = null;
 }
 public DomainActionCalledEventArgs(DomainAction action, object[] arguments, object returnValue)
 {
     this.Action      = action;
     this.Arguments   = arguments;
     this.ReturnValue = returnValue;
 }