C# Class Amazon.Runtime.Internal.Util.NonDisposingWrapperStream

A wrapper stream which supresses disposal of the underlying stream.
Inheritance: WrapperStream
Datei anzeigen Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
Close ( ) : void

The Close implementation for this wrapper stream does not close the underlying stream.

NonDisposingWrapperStream ( Stream baseStream ) : System

Constructor for NonDisposingWrapperStream.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

The Dispose implementation for this wrapper stream does not close the underlying stream.

Method Details

Close() public method

The Close implementation for this wrapper stream does not close the underlying stream.
public Close ( ) : void
return void

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

NonDisposingWrapperStream() public method

Constructor for NonDisposingWrapperStream.
public NonDisposingWrapperStream ( Stream baseStream ) : System
baseStream Stream The base stream to wrap.
return System