BMXNET 4.0 Developer API

Access to a RemoteEventService also allows you to publish your own events. Publishing is done through design and documentation to notify other developers what events you will trigger. An event is published, or triggered, by using TriggerEvent with the name of the event, an optional event specific string with data, and whether or not the publisher, if subsubscribed, wants the event published to them.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
int TriggerEvent(
	string anEventType,
	string aParameter,
	bool raiseBack
)
Function TriggerEvent ( _
	anEventType As String, _
	aParameter As String, _
	raiseBack As Boolean _
) As Integer
int TriggerEvent(
	String^ anEventType, 
	String^ aParameter, 
	bool raiseBack
)

Parameters

anEventType
String
Name of the event to publish
aParameter
String
An optional string with event specific data
raiseBack
Boolean
Set to True if the publisher of anEventType, that is also a subscriber to anEventType, also wants the event to be triggered back to them

Return Value

See Also