FlickrNet.PhotoSearchOptions.RemoveLicense C# (CSharp) Method

RemoveLicense() public method

Removes a license from the list of licenses to be searched for.
public RemoveLicense ( int license ) : void
license int The number of the license to remove.
return void
        public void RemoveLicense(int license)
        {
            if( _licenses.Contains(license) ) _licenses.Remove(license);
        }