FlickrNet.Flickr.PhotosetsEditPhotos C# (CSharp) Method

PhotosetsEditPhotos() public method

Sets the photos for a photoset.
Will remove any previous photos from the photoset. The order in thich the photoids are given is the order they will appear in the photoset page.
public PhotosetsEditPhotos ( string photosetId, string primaryPhotoId, string photoIds ) : bool
photosetId string The ID of the photoset to update.
primaryPhotoId string The ID of the new primary photo for the photoset.
photoIds string An array of photo IDs.
return bool
        public bool PhotosetsEditPhotos(string photosetId, string primaryPhotoId, string[] photoIds)
        {
            return PhotosetsEditPhotos(photosetId, primaryPhotoId, string.Join(",", photoIds));
        }
Flickr