IStringList Interface

The IStringList interface enables your component to retrieve values from the QueryString, Form, or ServerVariables collections.

Syntax
public interface asp.IStringList 
  extends com.ms.com.IUnknown
{
  public abstract int getCount();
  public abstract com.ms.com.IUnknown get_NewEnum();
  public abstract com.ms.com.Variant getItem(com.ms.com.Variant);
}
 
See Also

IStringList