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

Wrapper stream that only supports reading
Inheritance: WrapperStream
Mostra file Open project: aws/aws-sdk-net

Public Methods

Method Description
BeginWrite ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult
EndWrite ( IAsyncResult asyncResult ) : void
Flush ( ) : void
ReadOnlyWrapperStream ( Stream baseStream ) : System
Seek ( long offset, SeekOrigin origin ) : long
SetLength ( long value ) : void
Write ( byte buffer, int offset, int count ) : void

Method Details

BeginWrite() public method

public BeginWrite ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult
buffer byte
offset int
count int
callback AsyncCallback
state object
return IAsyncResult

EndWrite() public method

public EndWrite ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult
return void

Flush() public method

public Flush ( ) : void
return void

ReadOnlyWrapperStream() public method

public ReadOnlyWrapperStream ( Stream baseStream ) : System
baseStream Stream
return System

Seek() public method

public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
return long

SetLength() public method

public SetLength ( long value ) : void
value long
return void

Write() public method

public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
return void