Difference between revisions of "RPC HELP TloginMode"

From VistApedia
Jump to: navigation, search
(Created page with "<h2>TLoginMode Type</h2> The TLoginMode type is used with the Mode property as part of the TVistaLogin class. Unit [[RPC_HELP_TRPCB_Unit|TRPCB]...")
 
 
Line 12: Line 12:
 
 
 
The following table lists the possible values:
 
The following table lists the possible values:
 
 
 
<h3>Value -- Meaning</h3>
 
<h3>Value -- Meaning</h3>
 
*'''lmAVCodes''' -- Used if the application is passing in the user's Access and Verify codes during Silent Login.  For a demonstration using the '''lmAVCodes''', please run the lmAVCodes_Demo.EXE located in the ..\BDK32\Samples\SilentSignOn directory.
 
*'''lmAVCodes''' -- Used if the application is passing in the user's Access and Verify codes during Silent Login.  For a demonstration using the '''lmAVCodes''', please run the lmAVCodes_Demo.EXE located in the ..\BDK32\Samples\SilentSignOn directory.
  
 
* '''lmAppHandle''' -- Used to pass in an application handle rather than a user's Access and Verify codes during Silent Login. It sets the mode to lmAppHandle and the [[RPC_Broker_KernelLogIn|KernelLogIn]] property to false. Indicates that an application handle is being passed to the application when it was being started as opposed to Access and Verify codes.  For a demonstration using the '''lmAppHandle''', please run the lmAppHandle_Demo.EXE located in the ..\BDK32\Samples\SilentSignOn directory.
 
* '''lmAppHandle''' -- Used to pass in an application handle rather than a user's Access and Verify codes during Silent Login. It sets the mode to lmAppHandle and the [[RPC_Broker_KernelLogIn|KernelLogIn]] property to false. Indicates that an application handle is being passed to the application when it was being started as opposed to Access and Verify codes.  For a demonstration using the '''lmAppHandle''', please run the lmAppHandle_Demo.EXE located in the ..\BDK32\Samples\SilentSignOn directory.

Latest revision as of 15:19, 5 July 2015

TLoginMode Type

The TLoginMode type is used with the Mode property as part of the TVistaLogin class.

Unit TRPCB

Declaration

   type TLoginMode = (lmAVCodes, lmAppHandle);

Description

The TLoginMode type includes the acceptable values that can be used during Silent Login. If the KernelLogIn property is set to False, then it will be a Silent Login. Thus, one of these mode types has to be set in the TVistaLogin class Mode property. The Broker will use the information to perform a Silent Login.

The following table lists the possible values:

Value -- Meaning

  • lmAVCodes -- Used if the application is passing in the user's Access and Verify codes during Silent Login. For a demonstration using the lmAVCodes, please run the lmAVCodes_Demo.EXE located in the ..\BDK32\Samples\SilentSignOn directory.
  • lmAppHandle -- Used to pass in an application handle rather than a user's Access and Verify codes during Silent Login. It sets the mode to lmAppHandle and the KernelLogIn property to false. Indicates that an application handle is being passed to the application when it was being started as opposed to Access and Verify codes. For a demonstration using the lmAppHandle, please run the lmAppHandle_Demo.EXE located in the ..\BDK32\Samples\SilentSignOn directory.