The Request class of the com.ms.iis.asp package retrieves the values that the client browser passed to the server during an HTTP request. The Request object encapsulates the IRequest interface.
The Request object extends InputStream, which provides access to the data sent from the client to the server as part of a POST request. You can access the parameters that were provided by the browser in the HTTP request, query string, and so forth, by retrieving one of the five Dictionary objects that the Request object owns with the getServerVariables, getClientCertificate, getForm, getCookies, and getQueryString methods.
public Request(com.ms.asp.IRequest com.ms.asp.IResponse) { //Methods public com.ms.iis.asp.RequestDictionary getClientCertificate() ; public com.ms.iis.asp.CookieDictionary getCookies(); public com.ms.iis.asp.RequestDictionary getForm(); public com.ms.iis.asp.RequestDictionary getQueryString(); public com.ms.iis.asp.RequestDictionary getServerVariables(); public int getTotalBytes(); public synchronized int read (byte[] b, int off, int len); }