Methods / Administrative Service |
Web Services
Retrieves the name of the system user.
public virtual string GetSystemUser()
Name | Description |
---|---|
None | Not Applicable |
Returns the name of the system user as a string value.
IWFAdminService svc = GetAdminService(); try { string systemUser = svc.GetSystemUser(); Console.WriteLine("AgilePoint System User= '{0}'", systemUser); } catch (Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); } //This example produces the following results: //AgilePoint System User = 'Administrator'
4.6 and higher