Subtext.Framework.BlogInfo.GetBlogs C# (CSharp) Method

GetBlogs() public static method

Returns a IList{T} containing ACTIVE the BlogInfo instances within the specified range.
public static GetBlogs ( int pageIndex, int pageSize, ConfigurationFlags flags ) : IPagedCollection
pageIndex int Page index.
pageSize int Size of the page.
flags ConfigurationFlags
return IPagedCollection
        public static IPagedCollection<BlogInfo> GetBlogs(int pageIndex, int pageSize, ConfigurationFlags flags)
        {
            return ObjectProvider.Instance().GetPagedBlogs(null, pageIndex, pageSize, flags);
        }