BMXNET 4.0 Developer API

The active AppContext (OPTION) of this remote session.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
string AppContext { get; set; }
Property AppContext As String
property String^ AppContext {
	String^ get ();
	void set (String^ value);
}

Remarks

Normally the AppContext is set once, after logging into the BMX, with a single AppContext for the current applications. The AppContext can also be set in every RPC call. If the AppContext is the same as the currently set AppContext, the AppContext will not be re-set.

Examples

The VEN namespace is for PCC+ and the example below would be used at the beginning of a PCC+ application.
Copy Code
            aRemoteSession.AppContext = "VEN RPC";
            

See Also