| Methods / Administrative Service | |
Web Services
Removes a user's registration from the AgilePoint system. Note that this call does not remove the user from the local Windows system or the domain controller.
void UnregisterUser(string userName)
| Name | Description |
|---|---|
userName |
|
None.
IWFAdminService svc = GetAdminService();
string userName = ...// for example, "[Domain Name]\[User Account
Name]"
try
{
svc.UnregisterUser(userName);
}
catch( Exception ex)
{
Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
}
3.2.0.4 and higher