IResponse.Write Method
.NET Framework 4
Writes buffered data.
Namespace: Microsoft.AspNet.SignalR.Hosting
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Sub Write ( _
data As ArraySegment(Of Byte) _
)
'Usage
Dim instance As IResponse
Dim data As ArraySegment(Of Byte)
instance.Write(data)
void Write(
ArraySegment<byte> data
)
void Write(
ArraySegment<unsigned char> data
)
abstract Write :
data:ArraySegment<byte> -> unit
function Write(
data : ArraySegment<byte>
)
Parameters
- data
Type: System.ArraySegment<Byte>
The data to write to the buffer.