wwProcess::Process

Use of this method is deprecated. You should use OnProcessInit instead.

The Process method is the core processing method of the wwProcess class that initiates and completes request processing. It does all of the work.

Use this method only if you need to declare PRIVATE variables that need to be visible to your lower level Process methods. Whenever you call this method make sure you call DoDefault() to handle core processing:

FUNCTION Process
PRIVATE MyCustom
MyCustom = CREATEOBJECT("MyCustom")
DODEFAULT()
ENDFUNC
o.Process()

See also:

Class wwProcess

© West Wind Technologies, 1996-2022 • Updated: 10/26/05
Comment or report problem with topic