FlickrNet.Flickr.BlogPostPhoto C# (CSharp) Method

BlogPostPhoto() public method

Posts a photo already uploaded to a blog. Requires authentication.
public BlogPostPhoto ( string blogId, string photoId, string title, string description ) : bool
blogId string The Id of the blog to post the photo too.
photoId string The Id of the photograph to post.
title string The title of the blog post.
description string The body of the blog post.
return bool
        public bool BlogPostPhoto(string blogId, string photoId, string title, string description)
        {
            return BlogPostPhoto(blogId, photoId, title, description, null);
        }

Same methods

Flickr::BlogPostPhoto ( string blogId, string photoId, string title, string description, string blogPassword ) : bool
Flickr