Rock.Model.BlockService.GetByPage C# (CSharp) Метод

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

Returns a collection of Blocks that are implemented on a specific page.
public GetByPage ( int pageId ) : IQueryable
pageId int An representing the Id of a that a may be implemented on.
Результат IQueryable
        public IQueryable<Block> GetByPage( int pageId )
        {
            return Queryable()
                .Where( t => t.PageId == pageId )
                .OrderBy( t => t.Order );
        }