Click or drag to resize

IPushMessenger Interface


Represents the object that is in charge of sending SignalR server message to clients

Namespace:  Ingeniux.CMS.Messaging
Assembly:  Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.5.94
Syntax
public interface IPushMessenger

The IPushMessenger type exposes the following members.

Properties
  NameDescription
Public propertySiteName
Gets the Name of the Site
Public propertyUserId
Gets the UserId of the user that is the sending the message
Public propertyUserName
Gets the name of the user that is sending the message
Top
Methods
  NameDescription
Public methodSendToAll(String)
Sends a message to all connected user.
Public methodSendToAllT(T)
Sends an object to all connected users. The object is automatically parsed on client side.
Public methodSendToGroups(String, IUserGroup)
Sends a message to users in specified groups
Public methodSendToGroupsT(T, IUserGroup)
Sends a object to users in specified groups
Public methodSendToMe(String)
Sends a message to the sender only
Public methodSendToMeT(T)
Sends an object to the sender only
Public methodSendToUser(String, String)
Sends a message to the specified user, via the user's UserId.
Public methodSendToUserT(T, String)
Sends an object to the specified user, via the user's UserId.
Public methodSendToUsers(String, String)
Sends a message to the specified users, via the users' UserId.
Public methodSendToUsersT(T, String)
Sends an object to the specified users, via the users' UserId.
Top
See Also