C# 클래스 Amazon.Runtime.Internal.Util.NonDisposingWrapperStream

A wrapper stream which supresses disposal of the underlying stream.
상속: WrapperStream
파일 보기 프로젝트 열기: aws/aws-sdk-net 1 사용 예제들

공개 메소드들

메소드 설명
Close ( ) : void

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

NonDisposingWrapperStream ( Stream baseStream ) : System

Constructor for NonDisposingWrapperStream.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

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

메소드 상세

Close() 공개 메소드

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

Dispose() 보호된 메소드

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

NonDisposingWrapperStream() 공개 메소드

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