removeUserEx
[ Function ]
public static removeUserEx(
userName: string,
options?: TcHmi.Server.UserManagement.IUserManagementOptions | null,
requestOptions: TcHmi.Server.IRequestOptions | null = null,
callback: null | ((this: void, data: TcHmi.IResultObject) => void) = null
): TcHmi.IErrorDetails;
Deletes a user.
Parameter
Name | Type | Description |
---|---|---|
userName | Name of the user | |
options | User management options | |
requestOptions | Server request options | |
callback [ optional ] | (data: TcHmi.IResultObject) => void, null | Asynchronous callback function that is triggered once the action is completed. |
Return value
Type | Description |
---|---|
Returns confirmation as to whether the operation was successfully sent. |
Available from version 1.10.1018.48 |
Sample - JavaScript
TcHmi.Server.UserManagement.removeUserEx (
'newUser',
null,
{timeout: 2000},
function(data) {
if (data.error === TcHmi.Errors.NONE) {
// Success
} else {
// Error
}
}
);