DeleteClient Method
Deletes a client from the user list.
Syntax
public void deleteClient(String userId);
Remarks
Deletes a client from the user list. Must call ListUsers before the Users collection will be updated.
UserId is the id for the user that is going to be deleted.
// Deletes the first user.
shareFile.ListUsers();
string
UserId = shareFile.Users[0].Id;
shareFile.DeleteClient(UserId);