BMXNET 4.0 Developer API
The current patient and visit context.
Namespace:
IndianHealthService.BMXNetAssembly: BMXNET40 (in BMXNET40.dll)
Syntax
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:
public Context Context
{
get { return this.LocalSession == null ? null : this.LocalSession.Context; }
}
| |