HierarchyInfo.Priority Property

Definition

Gets the listing priority order for the node.

public:
 virtual property Microsoft::Web::Management::Client::HierarchyPriority Priority { Microsoft::Web::Management::Client::HierarchyPriority get(); };
public virtual Microsoft.Web.Management.Client.HierarchyPriority Priority { get; }
member this.Priority : Microsoft.Web.Management.Client.HierarchyPriority
Public Overridable ReadOnly Property Priority As HierarchyPriority

Property Value

One of the HierarchyPriority values. The default is Normal.

Examples

The following example implements the Priority property.

public override HierarchyPriority Priority
{
    get
    {
        return HierarchyPriority.Lowest;
    }
}

Remarks

A Microsoft.Web.Management.Client.HierarchyPriority.Lowest value puts the item at the bottom of the tree in IIS Manager; a Microsoft.Web.Management.Client.HierarchyPriority.Highest value puts the item at the top of the tree position.

Applies to