Files
Umbraco-CMS/src/umbraco.interfaces/INode.cs
2012-08-10 13:11:37 +06:00

37 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
namespace umbraco.interfaces
{
public interface INode
{
INode Parent { get; }
int Id { get; }
int template { get; }
int SortOrder { get; }
string Name { get; }
string Url { get; }
string UrlName { get; }
string NodeTypeAlias { get; }
string WriterName { get; }
string CreatorName { get; }
int WriterID { get; }
int CreatorID { get; }
string Path { get; }
DateTime CreateDate { get; }
DateTime UpdateDate { get; }
Guid Version { get; }
string NiceUrl { get; }
int Level { get; }
List<IProperty> PropertiesAsList { get; }
List<INode> ChildrenAsList { get; }
IProperty GetProperty(string Alias);
IProperty GetProperty(string Alias, out bool propertyExists);
DataTable ChildrenAsTable();
DataTable ChildrenAsTable(string nodeTypeAliasFilter);
}
}