Class Received
A standard message send explicitly from the client with data attached.
Assembly: Akka.Streams.SignalR.AspNetCore.dll
Syntax
public sealed class Received : object, ISignalREvent
Constructors
|
Improve this Doc
View Source
Received(HubCallerContext, Object)
Declaration
public Received(HubCallerContext request, object data)
Parameters
Type |
Name |
Description |
HubCallerContext |
request |
|
Object |
data |
|
Properties
|
Improve this Doc
View Source
Data
Payload sent by the client.
Declaration
public object Data { get; }
Property Value
|
Improve this Doc
View Source
Request
Declaration
public HubCallerContext Request { get; }
Property Value
Type |
Description |
HubCallerContext |
|
Methods
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Implements