web_global_verification_resume
Resumes the specified checks suspended by web_global_verification_pause.
C Language
int web_global_verification_resume( constchar *ID [, constchar *ID1, ..., constchar *IDn], LAST);| Argument | Description |
|---|---|
| ID | Each argument is a name-value pair as previously passed to web_global_verification as the ID argument. For example: ("ID=id1","ID=id2", LAST). |
| LAST | A marker that indicates the end of the argument list. |
Return Values
This function returns LR_PASS (0) on success, and LR_FAIL (1) on failure.
Parameterization
All string arguments (char type) can be parameterized using standard parameterization.
General Information
The web_global_verification_resume function resumes performing the checks originally specified by web_global_verification and then suspended by web_global_verification_pause.
Example
In the following example, web_global_verification checks for "text1", "text2", and "text3". web_global_verification_pause and web_global_verification_resume suspend checks selectively for segments of the script.
web_global_verification("Text/IC=text1", "Fail=NotFound",
"ID=text_1_verify", LAST ); web_global_verification("Text/IC=text2", "Fail=NotFound",
"ID=text_2_verify", LAST ); web_global_verification("Text/IC=text2", "Fail=NotFound",
"ID=text_3_verify", LAST ); /* For this call, the check will be performed for all the above global verifications. */
web_url("Search for 1_2_3", "URL=...", LAST ); ....
web_global_verification_pause("ID=text_3_verify", "ID=text_1_verify", LAST);/* For this call, the check will be performed only for global verification text_2_verify. The others are suspended.*/
web_url("Search for 2 only", "URL=...", LAST ); web_global_verification_resume("ID=text_3_verify", LAST);/* For this call, the check will be performed for global verification text_2_verify and text_3_verify. text_1_verify is still suspended.*/
web_url("Search for 2 and 3", "URL=...", LAST );

