ArcFM Responder Mobile Developer Guide
ConfiguratorResolve Event (RxDb)






Occurs when the Configurator property is accessed for the first time.
Syntax
'Declaration
 
Public Event ConfiguratorResolve As RxDb.ConfiguratorResolveEventHandler
'Usage
 
Dim instance As RxDb
Dim handler As RxDb.ConfiguratorResolveEventHandler
 
AddHandler instance.ConfiguratorResolve, handler
public event RxDb.ConfiguratorResolveEventHandler ConfiguratorResolve
public event ConfiguratorResolve: RxDb.ConfiguratorResolveEventHandler; 
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event RxDb.ConfiguratorResolveEventHandler* ConfiguratorResolve
public:
event RxDb.ConfiguratorResolveEventHandler^ ConfiguratorResolve
Remarks
Any program that wants to use the RxDb class must connect to this event and return an instance of the DataSetConfig (configurator) that the RxDb class should use. How you obtain the Configurator varies depending on the application. For example, Responder Explorer executes the ConfiguratorRequest object to ask DataServices for this information. However, DataServices simply loads the information out of a file or the enterprise configuration data store. Caution: The handler of this event must not use the RxDb class because this will cause re-entrancy. If you want to modify the configurator when it is created, but want to also add dynamic domains then you must do so in response to the ConfiguratorTransform event.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

RxDb Class
RxDb Members

Send Feedback