Hello,
I want to build a KendoUi DataSource with SignalR. I looked at many examples, but what I don’t understand is where the client crud methods are defined.
transport: {
signalr: {
promise: hubStart,
hub: hub,
server: {
read: "read",
update: "update",
destroy: "destroy",
create: "create"
},
client: {
read: "read",
update: "update",
destroy: "destroy",
create: "create"
}
Is there any documentation about this interface?
In the examples the Server methods called with parameter:
public void Update(ProductSignalR product)
Where happens all this stuff? Could you explain me the logical relationship?
I want to build a KendoUi DataSource with SignalR. I looked at many examples, but what I don’t understand is where the client crud methods are defined.
transport: {
signalr: {
promise: hubStart,
hub: hub,
server: {
read: "read",
update: "update",
destroy: "destroy",
create: "create"
},
client: {
read: "read",
update: "update",
destroy: "destroy",
create: "create"
}
Is there any documentation about this interface?
In the examples the Server methods called with parameter:
public void Update(ProductSignalR product)
Where happens all this stuff? Could you explain me the logical relationship?