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; }
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; }
public CacheResult(CacheQueryResult result, Stream data, string path) { this.result = result; this.data = data; this.physicalPath = path; }
public CacheResult(CacheQueryResult result, string path) { this.result = result; }