What are the differences between these two prefixes in terms of HttpListener or any other?
HttpListener
http://+:8080/ http://*:8080/
http://*:8080/: Receive all HTTP requests on port 8080 that are not already being handled by some other HttpListener.
http://*:8080/
http://+:8080/: Receive all HTTP requests on port 8080 even if they're already handled by another HttpListener.
http://+:8080/
2.1m questions
2.1m answers
60 comments
57.0k users