PhotosetsCreate() public méthode

Creates a blank photoset, with a title and a primary photo (minimum requirements).
public PhotosetsCreate ( string title, string primaryPhotoId ) : Photoset
title string The title of the photoset.
primaryPhotoId string The ID of the photo which will be the primary photo for the photoset. This photo will also be added to the set.
Résultat Photoset
Exemple #1
0
 /// <summary>
 /// this method will create a flickr photoset and add the specified photo to it as well
 /// </summary>
 /// <param name="setName">the name of the new photoset to be created</param>
 /// <param name="photoId">the id of the primary photo in the new set</param>
 private void CreateFlickrPhotoSet(string setName, string photoId)
 {
     flickr.PhotosetsCreate(setName, photoId);
 }