When I check with Fiddler I see my new install of VS2013 is giving Continuous Signal R requests. I don't use anything to do with this in my application. How can I stop these requests which I assume are part of VS2013 trying to sync up something?
相关问题
- MVC-Routing,Why i can not ignore defaults,The matc
- How to know full paths to DLL's from .csproj f
- Importing NuGet references through a local project
- Visual Studio 2019 - error MSB8020: The build tool
- 'System.Threading.ThreadAbortException' in
相关文章
- How to show location of errors, references to memb
- How to track MongoDB requests from a console appli
- Web Test recorder does not allow me to record a te
- How to get a list of connected clients on SignalR
- Visual Studio Hangs on Loading UI Library
- How do you redirect to the calling page in ASP.NET
- How to use Mercurial from Visual Studio 2010?
- Change color of bars depending on value in Highcha
There seem to be two additional calls made by the browser-link:
__browserlink
at the start of the URL.SignalR
about 30 characters into the URL.The former, a single call, I can live with. The other fills up my capture history.
To avoid this, in fiddler I've used the 'Hide the following Hosts' option in the Filter Tab and put something like
localhost:62533
in the text box. Note that port number seems to change with each restart of VS2013.As long as the 'Use Filters' is checked, I still see the traffic I want to (plus a one-off call for
__browserlink
).It's probably due to the BrowserLink feature mentioned here. BrowserLink uses SignalR to communicate between VS and your browsers.
Maybe log out of VisualStudio? It might also help if you tell us where VS is communicating to...