BMXNET 4.0 Developer API

Authenticated user associated with LocalSession

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

Syntax

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

Remarks

If there are also RemoteSessions, the RemoteSessions will have the same User object

Examples

Copy Code
            this.StatusLabel.Text= aLocalSession.User == null ? "No user" : aLocalSession.User.Name;
            

See Also