BMXNET 4.0 Developer API

The LocalSession is scoped to the client, whether EHR/VueCentric or a WinForm application. User management, patient/visit context, and local events are the key services. Components/controls that are programmed against this API will work within both the EhrFramework and WinFramework environments.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public interface LocalSession : Log
Public Interface LocalSession _
	Implements Log
public interface class LocalSession : Log

Members

         
 All Members  Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
Close()()()
Call to close the LocalSession which is the last action to take when shutdown down your application.
Context
The current patient and visit context.
EventServices
Access to the LocalSessions EventServices
IsLogging
True if logging is currently enabled. It's recommend to turn logging off except for diagnositics.
(Inherited from Log.)
Log(String, String, array<String>[]()[])
Call to send information to the log.
(Inherited from Log.)
Log(String, String, Exception, array<String>[]()[])
Call to send information to the log where an exception occured.
(Inherited from Log.)
NewUser(String, String, Division)
Create a new user object.
Notify(String, Exception)
Simple uniform call for local notifications to the user when an exception occurs.
Notify(String, String)
Simple uniform call for local notifications to the user.
User
Authenticated user associated with LocalSession

See Also