Exemplo n.º 1
0
 //- @GetBlogListForAssociatedAuthor -//
 public static List <BlogMetaData> GetBlogListForAssociatedAuthor(String emailAddress, String password)
 {
     using (BlogClient blogClient = new BlogClient(BlogSection.GetConfigSection().Service.Endpoint.Blog))
     {
         blogClient.ClientCredentials.UserName.UserName = emailAddress;
         blogClient.ClientCredentials.UserName.Password = password;
         //+
         return(blogClient.GetBlogListForAssociatedAuthor(emailAddress));
     }
 }