source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet/RemoteEventArgs.cs@ 1150

Last change on this file since 1150 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 1.0 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.ComponentModel;
5
6namespace 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.