Exemplo n.º 1
0
 public CacheResult(CacheQueryResult result, Stream data, string relativePath)
 {
     this.result = result;
     this.data = data;
     this.relativePath = relativePath;
 }
Exemplo n.º 2
0
 public CacheResult(CacheQueryResult result, string physicalPath, string relativePath)
 {
     this.result = result;
     this.physicalPath = physicalPath;
     this.relativePath = relativePath;
 }
 public CacheResult(CacheQueryResult result, Stream data, string relativePath)
 {
     this.Result       = result;
     this.Data         = data;
     this.RelativePath = relativePath;
 }
 public CacheResult(CacheQueryResult result, string physicalPath, string relativePath)
 {
     this.Result       = result;
     this.PhysicalPath = physicalPath;
     this.RelativePath = relativePath;
 }
Exemplo n.º 5
0
 public CacheResult(CacheQueryResult result, Stream data, string path)
 {
     this.result       = result;
     this.data         = data;
     this.physicalPath = path;
 }
Exemplo n.º 6
0
 public CacheResult(CacheQueryResult result, string path)
 {
     this.result = result;
 }