Class Send
Assembly: Akka.Streams.SignalR.AspNetCore.dll
Syntax
public sealed class Send : object, ISignalRResult
Constructors
|
Improve this Doc
View Source
Send(String, Object)
Declaration
public Send(string connectionId, object data)
Parameters
|
Improve this Doc
View Source
Send(String, Object, IReadOnlyList<String>)
Declaration
public Send(string group, object data, IReadOnlyList<string> excludedConnectionIds)
Parameters
Type |
Name |
Description |
String |
group |
|
Object |
data |
|
IReadOnlyList<String> |
excludedConnectionIds |
|
Properties
|
Improve this Doc
View Source
ConnectionId
Declaration
public string ConnectionId { get; }
Property Value
|
Improve this Doc
View Source
Data
Declaration
public object Data { get; }
Property Value
|
Improve this Doc
View Source
ExcludedConnectionIds
Declaration
public IReadOnlyList<string> ExcludedConnectionIds { get; }
Property Value
Type |
Description |
IReadOnlyList<String> |
|
|
Improve this Doc
View Source
Group
Declaration
public string Group { get; }
Property Value
Implements