FlickrNet.Flickr.PhotosSearchText C# (CSharp) Method

PhotosSearchText() public method

Search for photos containing text, rather than tags.
public PhotosSearchText ( string text ) : Photos
text string The text you want to search for in titles and descriptions.
return Photos
        public Photos PhotosSearchText(string text)
        {
            return PhotosSearch(null, "", 0, text, DateTime.MinValue, DateTime.MinValue, 0, 0, 0, PhotoSearchExtras.All);
        }

Same methods

Flickr::PhotosSearchText ( string text, PhotoSearchExtras extras ) : Photos
Flickr::PhotosSearchText ( string text, int license ) : Photos
Flickr::PhotosSearchText ( string text, int license, PhotoSearchExtras extras ) : Photos
Flickr::PhotosSearchText ( string userId, string text ) : Photos
Flickr::PhotosSearchText ( string userId, string text, PhotoSearchExtras extras ) : Photos
Flickr::PhotosSearchText ( string userId, string text, int license ) : Photos
Flickr::PhotosSearchText ( string userId, string text, int license, PhotoSearchExtras extras ) : Photos
Flickr