BMXNET 4.0 Developer API

To publish an event call TriggerEvent with the event name and optional details. There is no restriction on what local events that can be triggered. A "REFRESH" event can be broadcast as well as any other application specific or well-known loal event.

Namespace:  IndianHealthService.BMXNet
Assembly:  BMXNET40 (in BMXNET40.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
void TriggerEvent(
	string anEventName,
	string someDetails
)
Sub TriggerEvent ( _
	anEventName As String, _
	someDetails As String _
)
void TriggerEvent(
	String^ anEventName, 
	String^ someDetails
)

Parameters

anEventName
String
The event name. This is normally a well-known event that multiple components used for event-driven communications.
someDetails
String
An arbitrary string containing event specific data

See Also