Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 |
|
---|
5 | namespace 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.