This commit is contained in:
2025-11-16 16:00:30 +03:30
parent 701a533acf
commit b693aaa375
4 changed files with 160 additions and 3 deletions
+6
View File
@@ -58,6 +58,12 @@ namespace xPushService.Base
//
#region Actions ...
public async Task SendCustomAction(string actionName, string payLoad)
{
//
var connectionId = Context.ConnectionId;
await Clients.AllExcept(connectionId).SendAsync(actionName, payLoad, connectionId);
}
#endregion
}
}