Exemplo n.º 1
0
 public static ValueTask <string> ReadAllTextAsync(this IAbpStore store, string path)
 {
     return(store.ReadAllTextAsync(new PrivateFileReference(path)));
 }
Exemplo n.º 2
0
 public ValueTask <string> ReadAllTextAsync(IPrivateFileReference file)
 {
     return(_innerStore.ReadAllTextAsync(file));
 }