Свойство | Type | Description | |
---|---|---|---|
Get | |||
Search |
Méthode | Description | |
---|---|---|
BrowseAsync ( string entity, string id, int limit = 25, int offset ) : Task |
Browse all the releases in the MusicBrainz database, which are directly linked to the entity with given id.
|
|
GetAsync ( string id ) : Task |
Lookup a release in the MusicBrainz database.
|
|
SearchAsync ( QueryParameters |
Search for a release in the MusicBrainz database, matching the given query.
|
|
SearchAsync ( string query, int limit = 25, int offset ) : Task |
Search for a release in the MusicBrainz database, matching the given query.
|
Méthode | Description | |
---|---|---|
Get ( string id ) : |
||
Search ( string query, int limit = 25, int offset ) : |
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 releases to return (default = 25). |
offset | int | The offset to the releases list (enables paging, default = 0). |
Résultat | Task |
public static GetAsync ( string id ) : Task |
||
id | string | The release MusicBrainz id. |
Résultat | Task |
public static SearchAsync ( QueryParameters |
||
query | QueryParameters |
The query parameters. |
limit | int | The maximum number of releases to return (default = 25). |
offset | int | The offset to the releases list (enables paging, default = 0). |
Résultat | Task |
public static SearchAsync ( string query, int limit = 25, int offset ) : Task |
||
query | string | The query string. |
limit | int | The maximum number of releases to return (default = 25). |
offset | int | The offset to the releases list (enables paging, default = 0). |
Résultat | Task |