Ejemplo n.º 1
0
 public QueryResponse(string query, SearchResponse response, System.DateTime dt)
 {
     this.query = query;
     this.response = response;
     this.creationTime = dt;
 }
Ejemplo n.º 2
0
 public QueryResponse(string query, SearchResponse response)
     : this(query, response, System.DateTime.Now) { }
Ejemplo n.º 3
0
 static void UpdateCache(string query, SearchResponse response)
 {
     lruCache.UpdateCache(query, new QueryResponse(query, response));
 }