RawResult(ReadOnlySequence<Byte>) Constructor

Definition

Stores the raw serialized bytes of a Result for forwarding to another server. Will copy the passed in bytes to internal storage.

public RawResult (System.Buffers.ReadOnlySequence<byte> rawBytes);
new Microsoft.AspNetCore.SignalR.Protocol.RawResult : System.Buffers.ReadOnlySequence<byte> -> Microsoft.AspNetCore.SignalR.Protocol.RawResult
Public Sub New (rawBytes As ReadOnlySequence(Of Byte))

Parameters

rawBytes
ReadOnlySequence<Byte>

The raw bytes from the client.

Applies to