 | ClientBaseSendAsync Method |
Sends specified byte array to the server.
Namespace: Limilabs.ClientAssembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic Task SendAsync(
byte[] bytes,
CancellationToken cancel = default
)
Public Function SendAsync (
bytes As Byte(),
Optional cancel As CancellationToken = Nothing
) As Task
public:
Task^ SendAsync(
array<unsigned char>^ bytes,
CancellationToken cancel = CancellationToken()
)
member SendAsync :
bytes : byte[] *
?cancel : CancellationToken
(* Defaults:
let _cancel = defaultArg cancel new CancellationToken()
*)
-> Task Parameters
- bytes Byte
- Byte array to send.
- cancel CancellationToken (Optional)
- A cancellation token that can be used to signal the asynchronous operation should be canceled.
Return Value
TaskA task that represents the asynchronous send operation.
See Also