Click or drag to resize
ConfigExtract Method
Extracts the parameters in the XML document.

Namespace: Activsoft.Engine
Assembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntax
public void Extract(
	Config monConfig
)

Parameters

monConfig
Type: Activsoft.EngineConfig
The Config instance to extract (which is supposed to be this)

Implements

IExtractorExtract(Config)
Remarks
The XML format is the following:
<PARAMETERS>
  <NAME_OF_PARAMETER_1 method="GET|COOKIES|POST|SESSION">
    value of parameter 1
  </NAME_OF_PARAMETER_1>
  <NAME_OF_PARAMETER_2 method="GET|COOKIES|POST|SESSION">
    value of parameter 2
  </NAME_OF_PARAMETER_2>
  etc.
</PARAMETERS>
See Also