URI target of this request, by default it is composed of uri_root / uri_tail

Property definitions

app $ AsyncHttpRequest :: uri
	# URI target of this request, by default it is composed of `uri_root / uri_tail`
	fun uri: Text do return uri_root / uri_tail
lib/app/http_request.nit:69,2--70,44

app $ SimpleAsyncHttpRequest :: uri
	redef var uri
lib/app/http_request.nit:158,2--14

app $ MyHttpRequest :: uri
	redef fun uri do return "http://example.com/"
lib/app/examples/http_request_example.nit:37,2--46