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

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

Méthodes publiques

Méthode Description
Close ( ) : void

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

NonDisposingWrapperStream ( Stream baseStream ) : System

Constructor for NonDisposingWrapperStream.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

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

Method Details

Close() public méthode

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

Dispose() protected méthode

The Dispose implementation for this wrapper stream does not close the underlying stream.
protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

NonDisposingWrapperStream() public méthode

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