Exemplo n.º 1
0
 protected bool SetError(API_ERROR Error, JToken jtk)
 {
     if (jtk == null)
     {
         return(SetError(Error, null));
     }
     return(SetError(Error, jtk.ToString()));
 }
Exemplo n.º 2
0
 protected bool SetError(API_ERROR Error, string msg)
 {
     _errCode = Error;
     _errMsg  = msg;
     return(false);
 }
Exemplo n.º 3
0
 public bool SetError(API_ERROR Error)
 {
     SetError(Error, Error.ToString());
     return(false);
 }