Rock.Model.RestActionService.GetGuid C# (CSharp) Метод

GetGuid() публичный Метод

Gets the Guid for the RestAction that has the specified Id
public GetGuid ( int id ) : Guid?
id int The identifier.
Результат Guid?
        public override Guid? GetGuid( int id )
        {
            var campus = Rock.Web.Cache.RestActionCache.Read( id );
            if ( campus != null )
            {
                return campus.Guid;
            }

            return null;
        }
RestActionService