From 53761229c2e2eb556ec810199bb27fd9aba39b14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Breu=C3=9F?= Date: Fri, 15 Mar 2024 14:21:22 +0100 Subject: [PATCH] Make FileSystemStream properties virtual: - IsAsync - Name --- src/TestableIO.System.IO.Abstractions/FileSystemStream.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TestableIO.System.IO.Abstractions/FileSystemStream.cs b/src/TestableIO.System.IO.Abstractions/FileSystemStream.cs index f72e92f8f..21e9a85d8 100644 --- a/src/TestableIO.System.IO.Abstractions/FileSystemStream.cs +++ b/src/TestableIO.System.IO.Abstractions/FileSystemStream.cs @@ -27,14 +27,14 @@ public override bool CanWrite => _stream.CanWrite; /// - public bool IsAsync { get; } + public virtual bool IsAsync { get; } /// public override long Length => _stream.Length; /// - public string Name { get; } + public virtual string Name { get; } /// public override long Position