コード例 #1
0
ファイル: CacheResult.cs プロジェクト: eakova/resizer
 public CacheResult(CacheQueryResult result, Stream data, string relativePath)
 {
     this.result = result;
     this.data = data;
     this.relativePath = relativePath;
 }
コード例 #2
0
ファイル: CacheResult.cs プロジェクト: eakova/resizer
 public CacheResult(CacheQueryResult result, string physicalPath, string relativePath)
 {
     this.result = result;
     this.physicalPath = physicalPath;
     this.relativePath = relativePath;
 }
コード例 #3
0
 public CacheResult(CacheQueryResult result, Stream data, string relativePath)
 {
     this.Result       = result;
     this.Data         = data;
     this.RelativePath = relativePath;
 }
コード例 #4
0
 public CacheResult(CacheQueryResult result, string physicalPath, string relativePath)
 {
     this.Result       = result;
     this.PhysicalPath = physicalPath;
     this.RelativePath = relativePath;
 }
コード例 #5
0
 public CacheResult(CacheQueryResult result, Stream data, string path)
 {
     this.result       = result;
     this.data         = data;
     this.physicalPath = path;
 }
コード例 #6
0
 public CacheResult(CacheQueryResult result, string path)
 {
     this.result = result;
 }