IRequest::get_Form

The IRequest::get_Form method retrieves the Form collection of the Request object.

HRESULT get_Form(
  IRequestDictionary ** ppDictReturn  //pointer to an 
                                      // IRequestDictionary interface 
                                      // pointer that receives the 
                                      // Form collection
);
 

Parameters

ppDictReturn
Points to an IRequestDictionary interface pointer that receives the Cookies collection.

Remarks

You can iterate through the Form collection with the get__NewEnum method exposed by the IRequestDictionary interface. You can also retrieve a specific Form value with the get_Item method.

See Also

IRequestDictionary