最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

asp.net - How can I close the client-side JavaScript 'Hub' connection in SignalR? - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 9

According 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:

发布评论

评论列表(0)

  1. 暂无评论