Extracts the parameters in the XML document.
Namespace: Activsoft.EngineAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxpublic void Extract(
Config monConfig
)
Public Sub Extract (
monConfig As Config
)
public:
virtual void Extract(
Config^ monConfig
) sealed
abstract Extract :
monConfig : Config -> unit
override Extract :
monConfig : Config -> unit 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