0
我在我的應用程序中設置SignalR
,它的工作原理非常好!SignalR服務器到客戶端只有
我有一個集線器,它只能將消息從服務器推送到客戶端。
不過,我也可以調用來自客戶端的方法回服務器,做這樣的:
// this makes a call from the client to the server
$.connection.appplicationHub.server.productCreated();
是否有辦法防止這種情況?