| Methods / Organization Properties |
| Name | Type | Description |
|---|---|---|
| name | string | A string that contains the name of an item, such as a property or attribute. |
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));
}