Represents the object that is in charge of sending SignalR server message to clients
Namespace: Ingeniux.CMS.MessagingAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntaxpublic interface IPushMessenger
Public Interface IPushMessenger
public interface class IPushMessenger
type IPushMessenger = interface end
The IPushMessenger type exposes the following members.
Properties| | Name | Description |
|---|
 | UserId |
Gets the UserId of the user that is the sending the message
|
 | UserName |
Gets the name of the user that is sending the message
|
Top
Methods| | Name | Description |
|---|
 | SendToAll(String) |
Sends a message to all connected user.
|
 | SendToAllT(T) |
Sends an object to all connected users. The object is automatically parsed on client side.
|
 | SendToGroups(String, IUserGroup) |
Sends a message to users in specified groups
|
 | SendToGroupsT(T, IUserGroup) |
Sends a object to users in specified groups
|
 | SendToMe(String) |
Sends a message to the sender only
|
 | SendToMeT(T) |
Sends an object to the sender only
|
 | SendToUser(String, String) |
Sends a message to the specified user, via the user's UserId.
|
 | SendToUserT(T, String) |
Sends an object to the specified user, via the user's UserId.
|
 | SendToUsers(String, String) |
Sends a message to the specified users, via the users' UserId.
|
 | SendToUsersT(T, String) |
Sends an object to the specified users, via the users' UserId.
|
Top
See Also