FlickrNet.Flickr.PhotosAddTags C# (CSharp) Method

PhotosAddTags() public method

Add a selection of tags to a photo.
public PhotosAddTags ( string photoId, string tags ) : void
photoId string The photo id of the photo.
tags string An array of strings containing the tags.
return void
        public void PhotosAddTags(string photoId, string[] tags)
        {
            string s = string.Join(",", tags);
            PhotosAddTags(photoId, s);
        }
Flickr