C# 클래스 Hqub.MusicBrainz.API.Entities.Recording

상속: System.Entity
파일 보기 프로젝트 열기: avatar29A/MusicBrainz 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Browse Hqub.MusicBrainz.API.Entities.Collections.RecordingList
Get Recording
Search Hqub.MusicBrainz.API.Entities.Collections.RecordingList

공개 메소드들

메소드 설명
BrowseAsync ( string entity, string id, int limit = 25, int offset ) : Task

Browse all the recordings in the MusicBrainz database, which are directly linked to the entity with given id.

GetAsync ( string id ) : Task

Lookup an recording in the MusicBrainz database.

SearchAsync ( QueryParameters query, int limit = 25, int offset ) : Task

Search for an recording in the MusicBrainz database, matching the given query.

SearchAsync ( string query, int limit = 25, int offset ) : Task

Search for an recording in the MusicBrainz database, matching the given query.

비공개 메소드들

메소드 설명
Browse ( string relatedEntity, string value, int limit = 25, int offset ) : RecordingList
Get ( string id ) : Recording
Search ( string query, int limit = 25, int offset ) : RecordingList

메소드 상세

BrowseAsync() 공개 정적인 메소드

Browse all the recordings in the MusicBrainz database, which are directly linked to the entity with given id.
public static BrowseAsync ( string entity, string id, int limit = 25, int offset ) : Task
entity string The name of the related entity.
id string The id of the related entity.
limit int The maximum number of recordings to return (default = 25).
offset int The offset to the recordings list (enables paging, default = 0).
리턴 Task

GetAsync() 공개 정적인 메소드

Lookup an recording in the MusicBrainz database.
public static GetAsync ( string id ) : Task
id string The recording MusicBrainz id.
리턴 Task

SearchAsync() 공개 정적인 메소드

Search for an recording in the MusicBrainz database, matching the given query.
public static SearchAsync ( QueryParameters query, int limit = 25, int offset ) : Task
query QueryParameters The query parameters.
limit int The maximum number of recordings to return (default = 25).
offset int The offset to the recordings list (enables paging, default = 0).
리턴 Task

SearchAsync() 공개 정적인 메소드

Search for an recording in the MusicBrainz database, matching the given query.
public static SearchAsync ( string query, int limit = 25, int offset ) : Task
query string The query string.
limit int The maximum number of recordings to return (default = 25).
offset int The offset to the recordings list (enables paging, default = 0).
리턴 Task