I found really interestic topic here: HttpListener Access Denied.
What I'm trying to do is creating Websocket application with my own http server. This app is based on .net core 2.0 and it should work on each operating system (windows, linux, ios) so I would like to avoid using the command line. Manifest file to elevate privileges is poor solution also.
This app should work on specified port, not only at 80.
I really don't believe that there is no any solution for this. I try to convert HttpListener to TcpListener, but this class has not Context.IsWebsocketRequest variable so I will be forced to handle websocket connection on my own (I want avoid this too).
Is there a way to bypass this problem using code only?