Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Utils/Net/CacheInfo.cs @ 12762

Last change on this file since 12762 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 830 bytes
Line 
1using System;
2
3namespace SharpVectors.Net
4{
5  public class CacheInfo
6  {
7    public CacheInfo(DateTime expires, string etag, DateTime lastModified, Uri cachedUri, string contentType)
8    {
9      this.expires = expires;
10      this.etag = etag;
11      this.lastModified = lastModified;
12      this.cachedUri = cachedUri;
13      this.contentType = contentType;
14    }
15
16    private DateTime expires;
17    public DateTime Expires
18    {
19      get{return expires;}
20    }
21
22    private Uri cachedUri;
23    public Uri CachedUri
24    {
25      get{return cachedUri;}
26    }
27
28    private DateTime lastModified;
29    public DateTime LastModified
30    {
31      get{return lastModified;}
32    }
33
34    private string etag;
35    public string ETag
36    {
37      get{return etag;}
38    }
39
40    private string contentType;
41    public string ContentType
42    {
43      get{return contentType;}
44    }
45  }
46}
Note: See TracBrowser for help on using the repository browser.