====== WebPlugin:HTTPRequest ======
A HTTPRequest is a struct with information about the webpage requested
<code cpp>
struct HTTPRequest
{
	string Method;
	string Path;
	cStringMap Params;
	string Username;
};
</code>

''Method'' can be either ''GET'' or ''POST''. The ''Path'' variable contains the path to the webpage. ''Params'' is a [[api:cStringMap]] object with ''GET'' or ''POST'' data. ''Username'' contains the user's username.