Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the setAllowUserInteraction() in HttpConnection

How this method setAllowUserInteraction() in HttpConnection works internally? What is the meaning of user interaction in this case ?

like image 420
Adham Avatar asked Oct 09 '22 00:10

Adham


1 Answers

It is supposed to indicate that if required the system can ask the user for additional input (for example: if used in an applet and a URL request is made that requires a username/password this signifies that the system GUI to ask the user for input can be called).

like image 176
Femi Avatar answered Oct 14 '22 17:10

Femi