BMXNET 4.0 Developer API

The current patient and visit context.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
Context Context { get; }
ReadOnly Property Context As Context
property Context^ Context {
	Context^ get ();
}

Examples

The context object is access exclusively through the LocalSession and LocalSession events. The context can be obtained if your control or component is a LocalSessionConsumer and if so then define the Context property as follows:
Copy Code
            public Context Context
            {
                get { return this.LocalSession == null ? null : this.LocalSession.Context; }
            }
            

See Also