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