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 5ab2fed commit 269854aCopy full SHA for 269854a
src/TestableIO.System.IO.Abstractions/FileSystemStream.cs
@@ -27,14 +27,14 @@ public override bool CanWrite
27
=> _stream.CanWrite;
28
29
/// <inheritdoc cref="FileStream.IsAsync" />
30
- public bool IsAsync { get; }
+ public virtual bool IsAsync { get; }
31
32
/// <inheritdoc cref="Stream.Length" />
33
public override long Length
34
=> _stream.Length;
35
36
/// <inheritdoc cref="FileStream.Name" />
37
- public string Name { get; }
+ public virtual string Name { get; }
38
39
/// <inheritdoc cref="Stream.Position" />
40
public override long Position
0 commit comments