Aqueduct.SitecoreLib.Search.Utilities.ItemUtil.GetItemPath C# (CSharp) Method

GetItemPath() public static method

Returns a full item path in the content tree.
public static GetItemPath ( Item item ) : string
item Item Sitecore item.
return string
        public static string GetItemPath(Item item)
        {
            Assert.ArgumentNotNull(item, "item");
            return item.Paths.FullPath;
        }
    }