Add Support for connectionId ...

This commit is contained in:
2025-11-16 20:40:45 +03:30
parent 981eeb46e8
commit 546d72b788
2 changed files with 26 additions and 10 deletions
+5 -5
View File
@@ -289,7 +289,7 @@ namespace xWebinarService.Providers
//
await SendPush(
action: XBaseEntityHubAction.Add.GetStringValue(),
payLoad: entity.ToJSON(),
payLoad: entity.ToJSON(camelCase: true),
connectionId: connectionId
);
@@ -443,7 +443,7 @@ namespace xWebinarService.Providers
//
await SendPush(
action: XBaseEntityHubAction.Update.GetStringValue(),
payLoad: entity.ToJSON(),
payLoad: entity.ToJSON(camelCase: true),
connectionId: connectionId
);
}
@@ -708,7 +708,7 @@ namespace xWebinarService.Providers
//
await SendPush(
action: XBaseEntityHubAction.Delete.GetStringValue(),
payLoad: entity.ToJSON(),
payLoad: entity.ToJSON(camelCase: true),
connectionId: connectionId
);
}
@@ -801,7 +801,7 @@ namespace xWebinarService.Providers
//
await SendPush(
action: XWebinarEntityHubAction.Subscribe.GetStringValue(),
payLoad: entity.ToJSON(),
payLoad: entity.ToJSON(camelCase: true),
connectionId: connectionId
);
}
@@ -927,7 +927,7 @@ namespace xWebinarService.Providers
//
await SendPush(
action: XWebinarEntityHubAction.Unsubscribe.GetStringValue(),
payLoad: entity.ToJSON(),
payLoad: entity.ToJSON(camelCase: true),
connectionId: connectionId
);
}