BMXNET 4.0 Developer API

The event args for all DataTableFuture events.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public class DataTableFutureEventArgs : EventArgs
Public Class DataTableFutureEventArgs _
	Inherits EventArgs
public ref class DataTableFutureEventArgs : public EventArgs

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
DataTableFutureEventArgs()()()
Equals(Object) (Inherited from Object.)
Finalize()()() (Inherited from Object.)
Future
The future object that can be used to determine the state of the future, cancel the future, and perform some post future processing.
GetHashCode()()() (Inherited from Object.)
GetType()()() (Inherited from Object.)
MemberwiseClone()()() (Inherited from Object.)
ToString()()() (Inherited from Object.)

Remarks

The DataTableFuture events are trigger in the non-UI thread and will break any application that is not managing it's UI calls properly. If implementing a basic GUI-based application, it's recommended to set the InvokedControl on every DataTableFuture you created. This EventArgs provides the future, which is the same instance created when the Async call was made.

Inheritance Hierarchy

System..::.Object
  System..::.EventArgs
    IndianHealthService.BMXNet.Ado..::.DataTableFutureEventArgs

See Also