Help > Web Development > Object Reference > Object Reference > ISYSConfig > Load Method
<a name="kanchor297"></a>ISYSConfig:Load Method
Loads configuration options from an XML file.

Syntax
[VBScript]
sub ISYSConfig.Load(_
  string Filename_ 
)
[C#]
void ISYSConfig.Load(
  string Filename
);
[ColdFusion/Java]
void IISYSConfig.Load(
  java.lang.String Filename
) throws ComException;
Parameters
FilenameName of the XML file containing the configuration options to load.

Examples
[XML]
<?xml version="1.0"?> <configuration> <isys.config> <setting name="RESULTLIST_PATH" value="c:\resultlists" /> <setting name="RESULTLIST_TYPE" value="1" /> <setting name="RESULTLIST_TIMEOUT" value="36" /> </isys.config> </configuration>
Remarks
The XML document must be well-formed to be loaded. You can include any of the options specified in the Item method.

The Load method will ignore any unknown entities, this enables you to merge it into another xml configuration files, such as web.config.