SignOnCharType Property
Type of characters the password can contain.
Syntax
fiprofile.getSignOnCharType(index, [callback])
Possible Values
0 (sctAlphaOnly), 1 (sctNumericOnly), 2 (sctAlphaOrNumeric), 3 (sctAlphaAndNumeric), 4 (sctUnknown)
Default Value
1
Callback
The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).
The callback for the getSignOnCharType([callback]) method is defined as:
function(err, data){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'data' is the value returned by the method.
The callback for the setSignOnCharType([callback]) method is defined as:
function(err){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'err' has 2 properties which hold detailed information:
err.code err.message
Remarks
Type of characters the password can contain. The valid values of this string are:
sctAlphaOnly (0) | Password may not contain numeric characters. The server would allow "abbc", but not "1223" or "a122". |
sctNumericOnly (1) | Password may not contain alphabetic characters. The server would allow "1223", but no "abbc" or "a122". |
sctAlphaOrNumeric (2) | Password may contain alphabetic or numeric characters (or both). The server would allow "abbc", "1223", or "a122". |
sctAlphaAndNumeric (3) | Password must contain both alphabetic and numeric characters. The server would allow "a122", but not "abbc" or "1223". |
sctUnknown (4) | The server has sent an unrecognized character type. Please refer to the SignOnAggregate to obtain the original response. |
The size of the array is controlled by the SignOnInfoCount property.
This property is read-only and not available at design time.
Data Type
Integer