Pause()

Pauses the execution of the request for a given amount of seconds

Usage

BOOLEAN = Pause( seconds )
Argument Summary
seconds seconds to pause for

Calling

Supports named-parameter calling allowing you to use the function like:

Pause(
   seconds=?
);

Supports passing parameters as a structure using ArgumentCollection:

Pause( ArgumentCollection={
   seconds : ?
} );