| Methods / Organization Properties | |
Web Services
Retrieves organization properties such as Title, Department and Location.
public virtual KeyValue[] GetOrganizationProperties(string Name)
| Name | Description |
|---|---|
Name |
|
An array of KeyValue objects.
IWFAdminService svc = GetAdminService();
string name = ...// for example, "Departments"
try
{
KeyValue[] organizationProperties =
svc.GetOrganizationProperties(Name);
foreach (KeyValue property in organizationProperties)
{
Console.WriteLine("Property Name = 'Department' Property Value =
'" + property.Value + "'");
}
}
catch (Exception ex)
{
Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
}
3.2.0.4 and higher