FlickrNet.Flickr.PhotosSetTags C# (CSharp) Method

PhotosSetTags() public method

Set the tags for a photo.
This will remove all old tags and add these new ones specified. See PhotosAddTags to just add new tags without deleting old ones.
public PhotosSetTags ( string photoId, string tags ) : bool
photoId string The id of the photo to update.
tags string An array of tags.
return bool
        public bool PhotosSetTags(string photoId, string[] tags)
        {
            string s = string.Join(",", tags);
            return PhotosSetTags(photoId, s);
        }
Flickr