Rev | Line | |
---|
[1146] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Text;
|
---|
| 4 | using System.ComponentModel;
|
---|
| 5 |
|
---|
| 6 | namespace IndianHealthService.BMXNet
|
---|
| 7 | {
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// The event args used by the RemoteEventService
|
---|
| 10 | /// </summary>
|
---|
| 11 | public class RemoteEventArgs : EventArgs
|
---|
| 12 | {
|
---|
| 13 | private String _eventType = null;
|
---|
| 14 |
|
---|
| 15 | /// <summary>
|
---|
| 16 | /// This string corresponds to well-known/shared EventTypes used to identify
|
---|
| 17 | /// different events published and subscribed between BMX implementations using RemoteSessions.
|
---|
| 18 | /// </summary>
|
---|
| 19 | public String EventType
|
---|
| 20 | {
|
---|
| 21 | get { return _eventType; }
|
---|
| 22 | set { _eventType = value; }
|
---|
| 23 | }
|
---|
| 24 | private String _details = null;
|
---|
| 25 |
|
---|
| 26 | /// <summary>
|
---|
| 27 | /// This is an optional peice of data with some event-specific details.
|
---|
| 28 | /// </summary>
|
---|
| 29 | public String Details
|
---|
| 30 | {
|
---|
| 31 | get { return _details; }
|
---|
| 32 | set { _details = value; }
|
---|
| 33 | }
|
---|
| 34 | }
|
---|
| 35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.