Name

int Count

The name of the domain.

Example

// Fetch all IID's within one DB call!
IDictionary<string, cEnumeration> enums = cEnumeration.GetMulti("OrderSupplyType", "PurchaseType", "PricingSource");

foreach (cEnumeration enumeration in enums.Values)
{
   switch (enumeration.Name)
   {
      case "OrderSupplyType":
         ...
         break;

      case "PurchaseType":
         ...
         break;

      case "PricingSource":
         ...
         break;
   }
}

Returns

Returns the name of the domain.