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

GetUserBlogs() private method

blogger.getUsersBlogs method
private GetUserBlogs ( string appKey, string userName, string password, string rootUrl ) : List
appKey string /// Key from application. Outdated methodology that has no use here. ///
userName string /// login username ///
password string /// login password ///
rootUrl string /// The root URL. ///
return List
        internal List<MWABlogInfo> GetUserBlogs(string appKey, string userName, string password, string rootUrl)
        {
            var blogs = new List<MWABlogInfo>();

            var temp = new MWABlogInfo { url = rootUrl, blogID = "1000", blogName = BlogSettings.Instance.Name };
            blogs.Add(temp);

            return blogs;
        }