예제 #1
0
        internal List <MWABlogInfo> GetUserBlogs(string appKey, string userName, string password, string rootUrl)
        {
            var blogs = new List <MWABlogInfo>();

            ValidateRequest(userName, password);

            var temp = new MWABlogInfo {
                url = rootUrl, blogID = "1000", blogName = "EventServer"
            };

            blogs.Add(temp);

            return(blogs);
        }
예제 #2
0
        internal List<MWABlogInfo> GetUserBlogs(string appKey, string userName, string password, string rootUrl)
        {
            var blogs = new List<MWABlogInfo>();

            ValidateRequest(userName, password);

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

            return blogs;
        }