BMXNET 4.0 Developer API

Access to local services are access through this interface.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public interface LocalEventService
Public Interface LocalEventService
public interface class LocalEventService

Members

         
 All Members  Methods   Events  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
ApplicationEvent
Local event subscribers will have this event triggered.
HasSubscribers(String)
Checks to see there are any subscriptions for this event.
RefreshRequested
This commonly broadcasted event is request to refresh content.
Subscribe(String)
Subscribe to the local event named anEventName.
TriggerEvent(String, String)
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.
Unsubscribe(String)
Unscribe scribes from the event. It is not mandatory to unsubscribe from this event at the end of your object's lifecycle but you should either subsubscribe or remote the event handler.

See Also