ApiBrain().SetUserSecurityLevel
Sets the numeric integer security level for the current user.
Description
This method sets the current security level for the user. The security range is 0 to n, where 0 is the lowest “public” level of security. Within the SILVIA Brain data itself, any Behavior and/or Exuder security value higher than 0 must be met with an equal or greater user security level for the Behavior/Exuder to be invoked. Note that a higher Behavior security level can override a lower Exuder security level.
Example Usage (Java)
boolean success = _core.ApiBrain().SetUserSecurityLevel(3);
Example Usage (C#)
bool success = _core.ApiBrain().SetUserSecurityLevel(3);
Parameters
int |
securityLevel |
The numeric integer value representing the new security level to apply to the user. |
Returns
The boolean success or failure of the operation.