Authentication Parameters synchronization parameter

Supplies parameters to authentication parameters in MobiLink events.

Syntax

The syntax varies depending on the API you use.

Remarks

Parameters may be a user name and password, for example.

If you use this parameter, you must also supply the number of parameters. See Number of Authentication Parameters parameter.

Allowed values

An array of strings. Null is not allowed as a value for any of the strings, but you can supply an empty string.

See also
Example

UltraLite for C/C++ applications can set the parameters as follows:

ul_char * Params[ 3 ] = { UL_TEXT( "parm1" ), 
                          UL_TEXT( "parm2" ), 
                          UL_TEXT( "parm3" ) };
// ...
info.num_auth_parms = 3;
info.auth_parms = Params;