IOwinResponse.WriteAsync Method (Byte[])

Asynchronously writes the given bytes to the response body stream.

Namespace:  Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

'Declaration
Function WriteAsync ( _
    data As Byte() _
) As Task
'Usage
Dim instance As IOwinResponse 
Dim data As Byte()
Dim returnValue As Task 

returnValue = instance.WriteAsync(data)
Task WriteAsync(
    byte[] data
)
Task^ WriteAsync(
    array<unsigned char>^ data
)
abstract WriteAsync : 
        data:byte[] -> Task
function WriteAsync(
    data : byte[]
) : Task

Parameters

Return Value

Type: System.Threading.Tasks.Task
A Task tracking the state of the write operation.

See Also

Reference

IOwinResponse Interface

WriteAsync Overload

Microsoft.Owin Namespace