Aqueduct.SitecoreLib.Search.Utilities.ItemUtil.GetItemPath C# (CSharp) Метод

GetItemPath() публичный статический Метод

Returns a full item path in the content tree.
public static GetItemPath ( Item item ) : string
item Item Sitecore item.
Результат string
        public static string GetItemPath(Item item)
        {
            Assert.ArgumentNotNull(item, "item");
            return item.Paths.FullPath;
        }
    }