source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet/Ado/DataTableFutureEventArgs.cs@ 1146

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

Initial Import of BMX4

File size: 1.1 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace IndianHealthService.BMXNet.Ado
6{
7
8 /// <summary>
9 /// The event args for all DataTableFuture events.
10 /// </summary>
11 /// <remarks>
12 /// The DataTableFuture events are trigger in the non-UI thread and will break any application that is not managing it's
13 /// UI calls properly. If implementing a basic GUI-based application, it's recommended to set the InvokedControl on
14 /// every DataTableFuture you created.
15 /// This EventArgs provides the future, which is the same instance created when the Async call was made.
16 /// </remarks>
17 public class DataTableFutureEventArgs:EventArgs
18 {
19 private DataTableFuture _future = null;
20 /// <summary>
21 /// The future object that can be used to determine the state of the future, cancel the future, and perform
22 /// some post future processing.
23 /// </summary>
24 public DataTableFuture Future
25 {
26 get { return _future; }
27 set { _future = value; }
28 }
29 }
30}
Note: See TracBrowser for help on using the repository browser.