Пример #1
0
 public PageActionResult(PageActionResultType resultType, string message, int errorCode, string keywords)
 {
     this.Result    = resultType;
     this.ErrorCode = errorCode;
     this.Message   = message;
     this.Keywords  = keywords;
 }
Пример #2
0
 public PageActionResult(PageActionResultType resultType)
 {
     this.Result    = resultType;
     this.ErrorCode = 0;
     this.Message   = string.Empty;
     this.Keywords  = string.Empty;
 }
Пример #3
0
 public PageActionResult(PageActionResultType resultType, string message, int errorCode, string keywords, object data)
 {
     this.Result    = resultType;
     this.ErrorCode = errorCode;
     this.Message   = message;
     this.Keywords  = keywords;
     this.Data      = data;
 }
Пример #4
0
 public PageActionResult(PageActionResultType resultType, object data)
 {
     this.Result    = resultType;
     this.ErrorCode = 0;
     this.Message   = string.Empty;
     this.Keywords  = string.Empty;
     this.Data      = data;
 }