C# Class SystemWebAdapter.Internal.OutputStream

Inheritance: DelegatingStream
Afficher le fichier Open project: avanderhoorn/SystemWebAdapter

Méthodes publiques

Méthode Description
BeginWrite ( byte buffer, int offset, int count, System callback, object state ) : IAsyncResult
EndWrite ( IAsyncResult asyncResult ) : void
Flush ( ) : void
FlushAsync ( CancellationToken cancellationToken ) : Task
Write ( byte buffer, int offset, int count ) : void
WriteAsync ( byte buffer, int offset, int count, CancellationToken cancellationToken ) : Task
WriteByte ( byte value ) : void

Private Methods

Méthode Description
Faulted ( ) : void
OutputStream ( HttpResponse response, System.Action start, System.Action faulted ) : System
Start ( bool force ) : void

Method Details

BeginWrite() public méthode

public BeginWrite ( byte buffer, int offset, int count, System callback, object state ) : IAsyncResult
buffer byte
offset int
count int
callback System
state object
Résultat IAsyncResult

EndWrite() public méthode

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

Flush() public méthode

public Flush ( ) : void
Résultat void

FlushAsync() public méthode

public FlushAsync ( CancellationToken cancellationToken ) : Task
cancellationToken System.Threading.CancellationToken
Résultat Task

Write() public méthode

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

WriteAsync() public méthode

public WriteAsync ( byte buffer, int offset, int count, CancellationToken cancellationToken ) : Task
buffer byte
offset int
count int
cancellationToken System.Threading.CancellationToken
Résultat Task

WriteByte() public méthode

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