示例#1
0
 public void setErrorObject()
 {
     if (!string.IsNullOrEmpty(_responseContent))
     {
         jpushError = JsonConvert.DeserializeObject <JpushError>(_responseContent);
     }
 }
示例#2
0
 public void setErrorObject()
 {
     if (string.IsNullOrEmpty(this._responseContent))
     {
         return;
     }
     this.jpushError = (JpushError)JsonConvert.DeserializeObject <JpushError>(this._responseContent);
 }