FlickrNet.Flickr.PhotosSetDates C# (CSharp) Method

PhotosSetDates() public method

Set the date the photo was posted (uploaded). This will affect the order in which photos are seen in your photostream.
All dates are assumed to be GMT. It is the developers responsibility to change dates to the local users timezone.
public PhotosSetDates ( string photoId, DateTime datePosted ) : bool
photoId string The id of the photo to set the date posted.
datePosted DateTime The new date to set the date posted too.
return bool
        public bool PhotosSetDates(string photoId, DateTime datePosted)
        {
            return PhotosSetDates(photoId, datePosted, DateTime.MinValue, DateGranularity.FullDate);
        }

Same methods

Flickr::PhotosSetDates ( string photoId, DateTime dateTaken, DateGranularity granularity ) : bool
Flickr::PhotosSetDates ( string photoId, DateTime datePosted, DateTime dateTaken, DateGranularity granularity ) : bool
Flickr