Method | Description | |
---|---|---|
Dispose ( ) : void |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
|
ReadAsync ( byte buffer, int offset, int length ) : Task |
Receives data asynchronous.
|
|
ReadAsync ( byte buffer, int offset, int length, |
Receives data asynchronous.
|
|
ReadLineAsync ( ) : Task |
Receives a line asynchronous.
|
|
ReadLineAsync ( |
Receives a line asynchronous.
|
|
WriteAsync ( byte buffer, int offset, int length ) : Task |
Sends data asynchronous.
|
|
WriteAsync ( byte buffer, int offset, int length, |
Sends data asynchronous.
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Releases unmanaged and - optionally - managed resources.
|
protected Dispose ( bool disposing ) : void | ||
disposing | bool | |
return | void |
public ReadAsync ( byte buffer, int offset, int length ) : Task |
||
buffer | byte | The buffer. |
offset | int | The offset. |
length | int | The length. |
return | Task |
public abstract ReadAsync ( byte buffer, int offset, int length, |
||
buffer | byte | The buffer. |
offset | int | The offset. |
length | int | The length. |
cancellationToken | The cancellation token. | |
return | Task |
public abstract ReadLineAsync ( |
||
cancellationToken | The cancellation token. | |
return | Task |
public WriteAsync ( byte buffer, int offset, int length ) : Task | ||
buffer | byte | The buffer. |
offset | int | The offset. |
length | int | The length. |
return | Task |
public abstract WriteAsync ( byte buffer, int offset, int length, |
||
buffer | byte | The buffer. |
offset | int | The offset. |
length | int | The length. |
cancellationToken | The cancellation token. | |
return | Task |