Share via


IStringList::get_Count

The IStringList::get_Count method retrieves the number of items in a string list.

HRESULT get_Count(
      INT* cStrRet
);

Parameters

  • cStrRet
    [retval] [out] Points to an integer that receives the number of items.

Remarks

The Form, QueryString, and ServerVariables collections return parameter values as an array. If the collection does not contain multiple values, the cStrRet will contain 1, if the parameter is not found, it will contain 0.

You can use this method to determine the number of items in the array. For example, if a Form included an Items ordered parameter, you could use the get_Count method to determine the number of items that had been ordered in the Form.

Requirements

Client: Requires Windows XP Professional, Windows 2000 Professional, or Windows NT Workstation 4.0.

Server: Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0.

Product: IIS

See Also