.net localhost website consistently making get arterySignalR/poll?transport=longPolling&connectionToken= calls

前端 未结 4 1546
梦谈多话
梦谈多话 2020-12-04 06:14

I created a new VS 2013 project and viewed the default.aspx page with the Firefox browser. When I check the net calls it has made, I see it making constant calls to:

4条回答
  •  星月不相逢
    2020-12-04 06:38

    This is working as intended. Artery aka BrowserLink is a real-time connection from Visual Studio to all browsers running your code. It essentially allows Visual Studio to interact with every browser.

    For instance if you have IE, Opera, Chrome and Firefox all running your code and you're trying to ensure cross browser correctness; instead of going to each browser and hitting f5 to refresh you can just click the browser link refresh button which will auto-refresh all of the pages for you.

    Not everyone wants or needs to have this functionality so if you do want to disable it, as Gustavo Armenta said you can disable it by following the steps here: How can I disable __vwd/js/artery in VS.NET 2013?

    Hope this helps!

提交回复
热议问题