コード例 #1
0
ファイル: Executor.cs プロジェクト: thehellnet/lanparty-tool
 private JsonResponse DoPing()
 {
     Logger.Debug("Ping command");
     return(JsonResponse.GetSuccessInstance(_command));
 }
コード例 #2
0
 private bool Equals(JsonResponse other)
 {
     return(other != null && Success == other.Success && Equals(Data, other.Data) && Equals(Error, other.Error));
 }