Asp Net MVC longPolling

1

I have a project asp net mvc 5, I checked that every second is made a request, passing those parameters = transport=longPolling&connectionToken="" , and as a response comes {"C":"d-5B01A8B9-CN,0|Dw,B|Dx,0","M":[]} , what would that be?

    
asked by anonymous 24.08.2015 / 21:59

1 answer

2

Giving a search on the net, I noticed that this behavior occurs because you are using the Visual Studio 2013 Link Browser.

Browser Link is a feature of Visual Studio 2013, which creates a communication channel between the development environment and one or more web browsers. You can use the browser's link to update your web application across multiple browsers at the same time, which is useful for cross-browser testing.

To disable, just remove this option:

link link

    
24.08.2015 / 22:34