Previous PageNext Page

13.6 IRequestDictionary Interface

The IRequestDictionary interface is a general interface wrapper that can wrap the following collections:
 
  • Request.Cookies
  • Request.Form
  • Request.QueryString
  • Request.ServerVariables
  • Response.Cookies
The behavior of the IRequestDictionary interface depends on how the Request or Response object implements the IRequestDictionary::get_Item method.
 

IRequestDictionary::get_Count
 
Retrieves the number of items in a dictionary.
 
IRequestDictionary::get_Item
 
Retrieves the specified item from a dictionary.
 
IRequestDictionary::get_Key
 
Retrieves the identifier of the item to be retrieved from the collection.
 
IRequestDictionary::get_NewEnum
 
Retrieves an enumerator for the collection.
 
The IRequestDictionary interface also supports the IUnknown and IDispatch interface methods.
 


Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page