BlogEngine.Core.API.MetaWeblog.MetaWeblogHandler.GetPages C# (CSharp) Method

GetPages() private method

wp.getPages method
private GetPages ( string blogId, string userName, string password ) : List
blogId string /// blogID in string format ///
userName string /// login username ///
password string /// login password ///
return List
        internal List<MWAPage> GetPages(string blogId, string userName, string password)
        {
            return Page.Pages.Where(p => p.IsVisible).Select(page => new MWAPage
                {
                    pageID = page.Id.ToString(), title = page.Title, description = page.Content, mt_keywords = page.Keywords, pageDate = page.DateCreated, link = page.AbsoluteLink.AbsoluteUri, mt_convert_breaks = "__default__", pageParentID = page.Parent.ToString()
                }).ToList();
        }