Amazon.Runtime.Internal.Util.NonDisposingWrapperStream.Dispose C# (CSharp) Method

Dispose() protected method

The Dispose implementation for this wrapper stream does not close the underlying stream.
protected Dispose ( bool disposing ) : void
disposing bool
return void
        protected override void Dispose(bool disposing)
        {
            // Suppress disposing the stream by not calling Dispose() on the base stream.            
        }
    }