• NeonScriptArtist ArtistById(Int32 artistId)
    Returns an artist by ID.
    Parameters
    NameDescription
    artistIdThe artist id
  • NeonScriptArtist ArtistByName(String artist)
    Returns an artist by name.
    Parameters
    NameDescription
    artistThe name of the artist
  • Task CommitAllChanges(NeonScriptArtist artist)
    Commits all changes made to the artist.
    Parameters
    NameDescription
    artistNeonScriptArtist
  • Task CommitAllChanges(IEnumerable<NeonScriptArtist> artists)
    Commits all changes made to the artists in the list.
    Parameters
    NameDescription
    artistsList of NeonScriptArtist
  • void SetArtistAsFavourite(NeonScriptArtist artist, Boolean isFavourite)
    Sets the specified artist as favourite or not.
    Parameters
    NameDescription
    artistThe artist to set value for
    isFavouriteTrue or false
  • IEnumerable<NeonScriptTrack> TracksForArtist(NeonScriptArtist artist)
    Returns all tracks for a given artist.
    Parameters
    NameDescription
    artistThe artist to get the tracks for
  • IEnumerable<NeonScriptTrack> TracksForArtistAsync(NeonScriptArtist artist)
    Returns all tracks for a given artist. (async version)
    Parameters
    NameDescription
    artistThe artist to get the tracks for