FlickrNet.Flickr.BlogGetList C# (CSharp) Method

BlogGetList() public method

Gets a list of blogs that have been set up by the user. Requires authentication.
public BlogGetList ( ) : FlickrNet.Blogs
return FlickrNet.Blogs
        public Blogs BlogGetList()
        {
            Hashtable parameters = new Hashtable();
            parameters.Add("method", "flickr.blogs.getList");
            FlickrNet.Response response = GetResponseCache(parameters);

            if( response.Status == ResponseStatus.OK )
            {
                return response.Blogs;
            }
            else
            {
                throw new FlickrException(response.Error);
            }
        }
Flickr