예제 #1
0
 public static ValueTask <byte[]> ReadAllBytesAsync(this IAbpStore store, string path)
 {
     return(store.ReadAllBytesAsync(new PrivateFileReference(path)));
 }
예제 #2
0
 public ValueTask <byte[]> ReadAllBytesAsync(IPrivateFileReference file)
 {
     return(_innerStore.ReadAllBytesAsync(file));
 }