Rock.Model.PageService.GetGuid C# (CSharp) Méthode

GetGuid() public méthode

Gets the Guid for the Page that has the specified Id
public GetGuid ( int id ) : Guid?
id int The identifier.
Résultat Guid?
        public override Guid? GetGuid( int id )
        {
            var cacheItem = Rock.Web.Cache.PageCache.Read( id );
            if ( cacheItem != null )
            {
                return cacheItem.Guid;
            }

            return null;
        }