Add Support for connectionId ...
This commit is contained in:
@@ -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
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user