We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
_underlyingStream
1 parent 79264e1 commit a3b1423Copy full SHA for a3b1423
test/PowerShellEditorServices.Test.E2E/Processes/LoggingStream.cs
@@ -16,6 +16,15 @@ internal class LoggingStream : Stream
16
17
public LoggingStream(Stream underlyingStream) => _underlyingStream = underlyingStream;
18
19
+ protected override void Dispose(bool disposing)
20
+ {
21
+ base.Dispose(disposing);
22
+ if (disposing)
23
24
+ _underlyingStream.Dispose();
25
+ }
26
27
+
28
public override bool CanRead => _underlyingStream.CanRead;
29
30
public override bool CanSeek => _underlyingStream.CanSeek;
0 commit comments