Class XenDesktopZoneItem
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents an item in a XenDesktop zone. This applies to XenDesktop 7.7 and above only.
public class XenDesktopZoneItem : GlobalSerializableClassicBase, IComparable<XenDesktopZoneItem>
- Inheritance
-
XenDesktopZoneItem
- Implements
Constructors
XenDesktopZoneItem()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.XenDesktopZoneItem class.
public XenDesktopZoneItem()
Properties
Description
Gets or sets the description of the item in the zone.
public string Description { get; set; }
Property Value
ItemType
Gets or sets the type of item.
public XenDesktopZoneItemType ItemType { get; set; }
Property Value
ItemTypeString
Gets the type of item as a human readable string.
public string ItemTypeString { get; set; }
Property Value
Name
Gets or sets the name of the item in the zone.
public string Name { get; set; }
Property Value
Uid
Gets or sets the unique identifier for the item in GUID format.
public string Uid { get; set; }
Property Value
Methods
CompareTo(XenDesktopZoneItem)
Compares two CENTREL.XIA.Configuration.Types.XenDesktopZoneItem objects to allow sorting alphabetically by name.
public int CompareTo(XenDesktopZoneItem other)
Parameters
other
XenDesktopZoneItemThe CENTREL.XIA.Configuration.Types.XenDesktopZoneItem to compare to.
Returns
- int
The sort order of the two zone items.
FromXml(string)
Returns a CENTREL.XIA.Configuration.Types.XenDesktopZoneItem class from the specified XML.
public static XenDesktopZoneItem FromXml(string xml)
Parameters
xml
stringThe XML representation of the object.
Returns
- XenDesktopZoneItem
A CENTREL.XIA.Configuration.Types.XenDesktopZoneItem class.