//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI { using System.Collections; public interface IHierarchyData { // properties bool HasChildren { get; } string Path { get; } object Item { get; } string Type { get; } // methods IHierarchicalEnumerable GetChildren(); IHierarchyData GetParent(); } }