C# 클래스 FlickrNet.PhotoSearchOptions

Summary description for PhotoSearchOptions.
파일 보기 프로젝트 열기: mono/flickr-sharp 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
AddLicense ( int license ) : void

Adds a new license to the list of licenses to be searched for.

PhotoSearchOptions ( ) : System

Creates a new instance of the search options.

PhotoSearchOptions ( string userId ) : System

Creates a new instance of the search options, setting the UserId property to the parameter passed in.

PhotoSearchOptions ( string userId, string tags ) : System

Create an instance of the PhotoSearchOptions for a given user ID and tag list.

PhotoSearchOptions ( string userId, string tags, TagMode tagMode ) : System

Create an instance of the PhotoSearchOptions for a given user ID and tag list, with the selected tag mode.

PhotoSearchOptions ( string userId, string tags, TagMode tagMode, string text ) : System

Create an instance of the PhotoSearchOptions for a given user ID and tag list, with the selected tag mode, and containing the selected text.

RemoveLicense ( int license ) : void

Removes a license from the list of licenses to be searched for.

메소드 상세

AddLicense() 공개 메소드

Adds a new license to the list of licenses to be searched for.
public AddLicense ( int license ) : void
license int The number of the license to search for.
리턴 void

PhotoSearchOptions() 공개 메소드

Creates a new instance of the search options.
public PhotoSearchOptions ( ) : System
리턴 System

PhotoSearchOptions() 공개 메소드

Creates a new instance of the search options, setting the UserId property to the parameter passed in.
public PhotoSearchOptions ( string userId ) : System
userId string The ID of the User to search for.
리턴 System

PhotoSearchOptions() 공개 메소드

Create an instance of the PhotoSearchOptions for a given user ID and tag list.
public PhotoSearchOptions ( string userId, string tags ) : System
userId string The ID of the User to search for.
tags string The tags (comma delimited) to search for. Will match all tags.
리턴 System

PhotoSearchOptions() 공개 메소드

Create an instance of the PhotoSearchOptions for a given user ID and tag list, with the selected tag mode.
public PhotoSearchOptions ( string userId, string tags, TagMode tagMode ) : System
userId string The ID of the User to search for.
tags string The tags (comma delimited) to search for.
tagMode TagMode The to use to search.
리턴 System

PhotoSearchOptions() 공개 메소드

Create an instance of the PhotoSearchOptions for a given user ID and tag list, with the selected tag mode, and containing the selected text.
public PhotoSearchOptions ( string userId, string tags, TagMode tagMode, string text ) : System
userId string The ID of the User to search for.
tags string The tags (comma delimited) to search for.
tagMode TagMode The to use to search.
text string The text to search for in photo title and descriptions.
리턴 System

RemoveLicense() 공개 메소드

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.
리턴 void