• void AddAlbumsToCollection(IEnumerable<NeonScriptAlbum> albums, NeonScriptAlbumCollection collection)
    Adds a collection of albums to the specified collection.
    Parameters
    NameDescription
    albumsThe albums that should be added
    collectionThe collection the albums should be added to
  • Task AddAlbumsToCollectionAsync(IEnumerable<NeonScriptAlbum> albums, NeonScriptAlbumCollection collection)
    Adds a collection of albums to the specified collection. (Asynchronous version)
    Parameters
    NameDescription
    albumsThe albums that should be added
    collectionThe collection the albums should be added to
  • void AddAlbumToCollection(NeonScriptAlbum album, NeonScriptAlbumCollection collection)
    Adds an album to the specified collection.
    Parameters
    NameDescription
    albumThe albums that should be added
    collectionThe collection the albums should be added to
  • Task AddAlbumToCollectionAsync(NeonScriptAlbum album, NeonScriptAlbumCollection collection)
    Adds an album to the specified collection. (Asynchronous version)
    Parameters
    NameDescription
    albumThe albums that should be added
    collectionThe collection the albums should be added to
  • List<NeonScriptAlbumCollection> GetAlbumCollections()
    Returns all album collections available.
  • void RemoveAlbumFromCollection(NeonScriptAlbum album, NeonScriptAlbumCollection collection)
    Removes a specific album from the specified collection.
    Parameters
    NameDescription
    albumThe album that should be removed
    collectionThe collection that should be removed
  • void RemoveAlbumsFromCollection(IEnumerable<NeonScriptAlbum> albums, NeonScriptAlbumCollection collection)
    Removes all albums from the specified collection.
    Parameters
    NameDescription
    albumsThe albums to remove from a collection
    collectionThe collection that should be removed
  • IEnumerable<NeonScriptAlbumCollection> AlbumCollections()
    Returns all album collections available.
    Returns: A list of NeonScriptAlbumCollection