ArcFM Engine Developer Guide
Process Method (Handler<T_Scope,T_ChildScope,T_ChildResult,T_Result>)


Process(T_Scope) calls Initialize on this handler, then Process on the child, and finally Execute on this handler. Override this method only for advanced cases that require altering this pattern. We recommend that you invoke this base method from the override. ProcessEvents are raised in this method, so any overrides that don't invoke the base should also raise any desired events.
Syntax
'Declaration
 
Public Overridable Function Process( _
   ByVal scope As T_Scope _
) As T_Result
'Usage
 
Dim instance As Handler(Of T_Scope,T_ChildScope,T_ChildResult,T_Result)
Dim scope As T_Scope
Dim value As T_Result
 
value = instance.Process(scope)
public virtual T_Result Process( 
   T_Scope scope
)

Parameters

scope
Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

Handler<T_Scope,T_ChildScope,T_ChildResult,T_Result> Class
Handler<T_Scope,T_ChildScope,T_ChildResult,T_Result> Members

 

 


Send Comment