Home > Contents > Index >
Expanded TOC | Accordion TOC | Annotated TOC | Index
ICS.GetVars
Returns an enumeration of all variable names known to Content Server.
Syntax
public Enumeration GetVars()Returns
Enumeration of all variables names.
Example
The following code gets the value of every variable known to Content Server:
Enumeration e = ics.GetVars(); while ( e.hasMoreElements() ) { String sVarName = (String)e.nextElement(); String sVarValue = ics.GetVar(sVarName); }See Also
Home > Contents > Index > ![]()
FatWire JAVA Reference
Copyright 2005,2006,2007 by FatWire Software
All rights reserved.