IStream.WriteAsync()
DESCRIPTION
Write bytes to a stream.
DECLARATION
System.Threading.Tasks.Task WriteAsync(Byte[])
PARAMETERS
data: The data to write to the stream.
ERRORS
T:Nabto.Edge.Client.NabtoException: Thrown with error codeCLOSEDif the stream is closed for writing.T:Nabto.Edge.Client.NabtoException: Thrown with error codeSTOPPEDif the stream was stopped.T:Nabto.Edge.Client.NabtoException: Thrown with error codeOPERATION_IN_PROGRESSif another write is in progress.T:Nabto.Edge.Client.NabtoException: Thrown with error codeEOFif eof is reached.
RETURNS
The Task that will complete once the operation is done.