TelnetStreamWriteAsync Method (Byte, Int32, Int32, CancellationToken) | |
Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.
Namespace: Lawo.IOAssembly: Lawo (in Lawo.dll) Version: 1.4.1707.27006
Syntax public override sealed Task WriteAsync(
byte[] buffer,
int offset,
int count,
CancellationToken cancellationToken
)
Parameters
- buffer
- Type: SystemByte
The buffer to write data from. - offset
- Type: SystemInt32
The zero-based byte offset in buffer from which to begin copying bytes to the stream. - count
- Type: SystemInt32
The maximum number of bytes to write. - cancellationToken
- Type: System.ThreadingCancellationToken
The token to monitor for cancellation requests. The default value is None.
Return Value
Type:
TaskA task that represents the asynchronous write operation.
Exceptions See Also