示例#1
0
 protected override ILoadJob <FileInfo> DoCreateFileDL(string identifier, IAccessLocation source, IAccessLocation local, long size)
 {
     return(WRDL.GetFileDL(identifier, source, local, size));
 }
示例#2
0
 protected override ILoadJob <string> DoCreateTextLoad(string identifier, IAccessLocation location)
 {
     return(WRDL.GetTextFile(identifier, location));
 }
示例#3
0
 protected override ILoadJob <byte[]> DoCreateBytesLoad(string identifier, IAccessLocation location)
 {
     return(WRDL.GetBinaryFile(identifier, location));
 }