FlickrNet.Flickr.PhotosGetCounts C# (CSharp) Méthode

PhotosGetCounts() public méthode

Returns count of photos between each pair of dates in the list.
If you pass in DateA, DateB and DateC it returns a list of the number of photos between DateA and DateB, followed by the number between DateB and DateC. More parameters means more sets.
public PhotosGetCounts ( DateTime dates ) : PhotoCounts
dates DateTime Array of objects.
Résultat PhotoCounts
        public PhotoCounts PhotosGetCounts(DateTime[] dates)
        {
            return PhotosGetCounts(dates, false);
        }

Same methods

Flickr::PhotosGetCounts ( DateTime dates, bool taken ) : PhotoCounts
Flickr::PhotosGetCounts ( string dates ) : PhotoCounts
Flickr::PhotosGetCounts ( string dates, string taken_dates ) : PhotoCounts
Flickr