MessengerpushNotify Method
|
A mapped method for client side javascript to call on the hub object.
This method allows client side to send a message to specified
User, or broadcast
to all users
Namespace:
Ingeniux.CMS.Models.Messaging
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax public void pushNotify(
string message,
string[] userIds = null
)
Public Sub pushNotify (
message As String,
Optional userIds As String() = Nothing
)
public:
void pushNotify(
String^ message,
array<String^>^ userIds = nullptr
)
member pushNotify :
message : string *
?userIds : string[]
(* Defaults:
let _userIds = defaultArg userIds null
*)
-> unit
Parameters
- message
- Type: SystemString
The message to send - userIds (Optional)
- Type: SystemString
The list of user to send message to. If null or empty, broadcast to all users
Remarks Since javascript fuction names conventionally start with a lower case character.
We are exposing a public method starting with lower case character too
See Also