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

string

Name of the user

options

TcHmi.Server.UserManagement.IUserManagementOptions, null

User management options

requestOptions

TcHmi.Server.IRequestOptions, null

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

TcHmi.IErrorDetails

Returns confirmation as to whether the operation was successfully sent.

removeUserEx 1:

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
        }
    }
);