Exemple #1
0
 private JsonResponse DoPing()
 {
     Logger.Debug("Ping command");
     return(JsonResponse.GetSuccessInstance(_command));
 }
Exemple #2
0
 private bool Equals(JsonResponse other)
 {
     return(other != null && Success == other.Success && Equals(Data, other.Data) && Equals(Error, other.Error));
 }