File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11namespace Renci . SshNet . Common
22{
33 using System ;
4- using System . IO ;
54
65 /// <summary>
76 /// A generic pipe to pass through data.
@@ -14,13 +13,13 @@ internal class Pipe : IDisposable
1413 /// Gets the input stream.
1514 /// </summary>
1615 /// <value>The input stream.</value>
17- public Stream InputStream { get ; private set ; }
16+ public PipeInputStream InputStream { get ; private set ; }
1817
1918 /// <summary>
2019 /// Gets the output stream.
2120 /// </summary>
2221 /// <value>The output stream.</value>
23- public Stream OutputStream { get ; private set ; }
22+ public PipeOutputStream OutputStream { get ; private set ; }
2423
2524 public Pipe ( )
2625 {
Original file line number Diff line number Diff line change @@ -83,7 +83,11 @@ public override long Position
8383 }
8484 }
8585
86+ #if NETSTANDARD1_3
87+ public void Close ( )
88+ #else
8689 public override void Close ( )
90+ #endif
8791 {
8892 if ( ! _queue . IsAddingCompleted )
8993 _queue . CompleteAdding ( ) ;
You can’t perform that action at this time.
0 commit comments