We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f37c36 commit c03b5d1Copy full SHA for c03b5d1
1 file changed
src/Foundatio.Redis/Storage/RedisFileStorage.cs
@@ -52,10 +52,6 @@ public void Dispose()
52
_connectionMultiplexer.ConnectionRestored -= ConnectionMultiplexerOnConnectionRestored;
53
}
54
55
- [Obsolete($"Use {nameof(GetFileStreamAsync)} with {nameof(StreamMode)} instead to define read or write behaviour of stream")]
56
- public Task<Stream?> GetFileStreamAsync(string path, CancellationToken cancellationToken = default)
57
- => GetFileStreamAsync(path, StreamMode.Read, cancellationToken);
58
-
59
public async Task<Stream?> GetFileStreamAsync(string path, StreamMode streamMode, CancellationToken cancellationToken = default)
60
{
61
if (String.IsNullOrEmpty(path))
0 commit comments