C# Class Hqub.MusicBrainz.API.Entities.ReleaseGroup

Inheritance: System.Entity
Afficher le fichier Open project: avatar29A/MusicBrainz Class Usage Examples

Private Properties

Свойство Type Description
Browse Hqub.MusicBrainz.API.Entities.Collections.ReleaseGroupList
Get ReleaseGroup
Search Hqub.MusicBrainz.API.Entities.Collections.ReleaseGroupList

Méthodes publiques

Méthode Description
BrowseAsync ( string entity, string id, int limit = 25, int offset ) : Task

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

GetAsync ( string id ) : Task

Lookup a release-group in the MusicBrainz database.

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

Search for a release-group in the MusicBrainz database, matching the given query.

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

Search for a release-group in the MusicBrainz database, matching the given query.

Private Methods

Méthode Description
Browse ( string relatedEntity, string value, int limit = 25, int offset ) : ReleaseGroupList
Get ( string id ) : ReleaseGroup
Search ( string query, int limit = 25, int offset ) : ReleaseGroupList

Method Details

BrowseAsync() public static méthode

Browse all the release-groups 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 release-groups to return (default = 25).
offset int The offset to the release-groups list (enables paging, default = 0).
Résultat Task

GetAsync() public static méthode

Lookup a release-group in the MusicBrainz database.
public static GetAsync ( string id ) : Task
id string The release-group MusicBrainz id.
Résultat Task

SearchAsync() public static méthode

Search for a release-group 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 release-groups to return (default = 25).
offset int The offset to the release-groups list (enables paging, default = 0).
Résultat Task

SearchAsync() public static méthode

Search for a release-group 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 release-groups to return (default = 25).
offset int The offset to the release-groups list (enables paging, default = 0).
Résultat Task