admin管理员组文章数量:1346043
I have followed this tutorial.
But there is no hint how to close the Websocket connection via the HubConnection
class in signalr.js
-file. The file is V1.0.4.
This solution does not resolve my problem because I am using the microsofts javascript-library.
Here ist the code:
var lHubConnection = null;
var Init = function () {
// create instance
lHubConnection = new signalR.lHubConnectionBuilder().withUrl("/chatHub").build();
// receive message
lHubConnection.on("ReceiveMessage", function (pMessage) {
// show message
console.log(JSON.parse(pMessage));
});
// [...]
};
// close websocket connection
var CloseConnection = function(){
if (lHubConnection !== null && lHubConnection.connection.connectionState === 1) {
// lHubConnection.invoke("?"); ???
}
};
Here is an console output of the lHubConnection instance:
I have followed this tutorial.
But there is no hint how to close the Websocket connection via the HubConnection
class in signalr.js
-file. The file is V1.0.4.
This solution does not resolve my problem because I am using the microsofts javascript-library.
Here ist the code:
var lHubConnection = null;
var Init = function () {
// create instance
lHubConnection = new signalR.lHubConnectionBuilder().withUrl("/chatHub").build();
// receive message
lHubConnection.on("ReceiveMessage", function (pMessage) {
// show message
console.log(JSON.parse(pMessage));
});
// [...]
};
// close websocket connection
var CloseConnection = function(){
if (lHubConnection !== null && lHubConnection.connection.connectionState === 1) {
// lHubConnection.invoke("?"); ???
}
};
Here is an console output of the lHubConnection instance:
Share Improve this question edited Nov 6, 2018 at 7:34 Simon asked Oct 23, 2018 at 8:45 SimonSimon 4,8742 gold badges56 silver badges94 bronze badges 4-
Have you tried
HubConnection.StopAsync
? According to MS docs, thats how you close the hub connection. – Vincent P Commented Oct 23, 2018 at 10:16 - There is no *.StopAsync() method. Can you please post the link of the MS docs where you have seen that? – Simon Commented Oct 23, 2018 at 10:50
- Ah that method may not be available in the JavaScript version, I'm not 100% sure. Here is the link – Vincent P Commented Oct 23, 2018 at 11:10
- @Vincent P: That is the serverside c# code. I am looking for the clientside js-code. – Simon Commented Oct 23, 2018 at 11:58
1 Answer
Reset to default 9According to Microsoft the JavaScript client contains a stop function.
https://learn.microsoft./en-us/javascript/api/%40aspnet/signalr/hubconnection?view=signalr-js-latest#stop
In addition, you can find the .stop()-Method in the prototype of the framework:
本文标签: aspnetHow can I close the clientside JavaScript 39Hub39 connection in SignalRStack Overflow
版权声明:本文标题:asp.net - How can I close the client-side JavaScript 'Hub' connection in SignalR? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743821806a2544921.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论