コード例 #1
0
 public static Response Success(String result, Entry cacheEntry)
 {
     return new Response(result, cacheEntry);
 }
コード例 #2
0
 private Response(String result, Entry cacheEntry)
 {
     this.Result = result;
     this.CacheEntry = cacheEntry;
     this.MError = null;
 }