RawResult Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Type returned to IHubProtocol implementations to let them know the object being deserialized should be stored as raw serialized bytes in the format of the protocol being used.
public sealed class RawResult
type RawResult = class
Public NotInheritable Class RawResult
- Inheritance
-
RawResult
Examples
In Json that would mean storing the byte representation of ascii {"prop":10} as an example.
Constructors
RawResult(ReadOnlySequence<Byte>) |
Stores the raw serialized bytes of a Result for forwarding to another server. Will copy the passed in bytes to internal storage. |
Properties
RawSerializedData |
The raw serialized bytes from the client. |