Method | Description | |
---|---|---|
FlushAsync ( this stream, |
Flush the write buffers to the stream.
|
|
ReadLineAsync ( this stream, |
Reads a line of characters asynchronously from the current stream and returns the data as a string.
|
|
ReadLineAsync ( this stream, System.TimeSpan timeout, |
Reads a line of characters asynchronously from the current stream and returns the data as a string.
|
|
ReplyAsync ( this stream, |
Reply to the client.
|
|
WriteLineAsync ( this stream, string text, |
Writes a line of characters asynchronously to the current stream.
|
public static FlushAsync ( this stream, |
||
stream | this | The stream to perform the operation on. |
cancellationToken | The cancellation token. | |
return | Task |
public static ReadLineAsync ( this stream, |
||
stream | this | The stream to perform the operation on. |
cancellationToken | The cancellation token. | |
return | Task |
public static ReadLineAsync ( this stream, System.TimeSpan timeout, |
||
stream | this | The stream to perform the operation on. |
timeout | System.TimeSpan | The timeout to apply when reading from the stream. |
cancellationToken | The cancellation token. | |
return | Task |
public static ReplyAsync ( this stream, |
||
stream | this | The text stream to perform the operation on. |
response | The response. | |
cancellationToken | The cancellation token. | |
return | Task |
public static WriteLineAsync ( this stream, string text, |
||
stream | this | The stream to perform the operation on. |
text | string | The text to write to the stream. |
cancellationToken | The cancellation token. | |
return | Task |