Methods / Group, Role, and Rights |
Web Services
Removes a member from a group.
public virtual void RemoveGroupMember(string GroupName, string UserName)
Name | Description |
---|---|
GroupName |
|
UserName |
|
None.
IWFAdminService svc = GetAdminService(); string GroupName = ...// for examples, "Engineers" string UserName = ...// for example, @"VIT\ct-002" try { svc.RemoveGroupMember(GroupName, UserName); } catch (Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); }
3.2.0.4 and higher