C# Class System.IO.Stream.SyncStream

Inheritance: Stream, IDisposable
Afficher le fichier Open project: gbarnett/shared-source-cli-2.0

Private Properties

Свойство Type Description
BeginRead IAsyncResult
BeginWrite IAsyncResult
SyncStream System

Méthodes publiques

Méthode Description
Close ( ) : void
EndRead ( IAsyncResult asyncResult ) : int
EndWrite ( IAsyncResult asyncResult ) : void
Flush ( ) : void
Read ( [ bytes, int offset, int count ) : int
ReadByte ( ) : int
Seek ( long offset, SeekOrigin origin ) : long
SetLength ( long length ) : void
Write ( byte bytes, int offset, int count ) : void
WriteByte ( byte b ) : void

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Private Methods

Méthode Description
BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, Object state ) : IAsyncResult
BeginWrite ( byte buffer, int offset, int count, AsyncCallback callback, Object state ) : IAsyncResult
SyncStream ( Stream stream ) : System

Method Details

Close() public méthode

public Close ( ) : void
Résultat void

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

EndRead() public méthode

public EndRead ( IAsyncResult asyncResult ) : int
asyncResult IAsyncResult
Résultat int

EndWrite() public méthode

public EndWrite ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult
Résultat void

Flush() public méthode

public Flush ( ) : void
Résultat void

Read() public méthode

public Read ( [ bytes, int offset, int count ) : int
bytes [
offset int
count int
Résultat int

ReadByte() public méthode

public ReadByte ( ) : int
Résultat int

Seek() public méthode

public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
Résultat long

SetLength() public méthode

public SetLength ( long length ) : void
length long
Résultat void

Write() public méthode

public Write ( byte bytes, int offset, int count ) : void
bytes byte
offset int
count int
Résultat void

WriteByte() public méthode

public WriteByte ( byte b ) : void
b byte
Résultat void