Methods / Group, Role, and Rights |
Web Services
Updates information for a group.
WFGroup UpdateGroup(string GroupName, string Description, string ResponsibleUser, bool Enabled)
Name | Description |
---|---|
GroupName |
|
Description |
|
ResponsibleUser |
|
Enabled |
|
An updated WFGroup.
IWFAdminService svc = GetAdminService(); string GroupName = ...// for example, "TestGroup1" string Description = ... // for example, "This is new description of the user group" string ResponsibleUser = ...// for example, "DEMO3\\Administrator" try { WFGroup updatedGroup = Svc.UpdateGroup(GroupName, Description, ResponsibleUser, true); } catch (Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); }
3.2.0.4 and higher