Class Album
public sealed class Album : IDisposable
- Inheritance
-
Album
- Implements
- Inherited Members
Properties
Artist
public Artist Artist { get; }
Property Value
Duration
Gets the duration of the Album.
public TimeSpan Duration { get; }
Property Value
Genre
Gets the Genre of the Album.
public Genre Genre { get; }
Property Value
HasArt
Gets a value indicating whether the Album has associated album art.
public bool HasArt { get; }
Property Value
IsDisposed
Gets a value indicating whether the object is disposed.
public bool IsDisposed { get; }
Property Value
Name
Gets the name of the Album.
public string Name { get; }
Property Value
Songs
Gets a SongCollection that contains the songs on the album.
public SongCollection Songs { get; }
Property Value
Methods
Dispose()
Immediately releases the unmanaged resources used by this object.
public void Dispose()
GetAlbumArt()
Returns the stream that contains the album art image data.
public Stream GetAlbumArt()
Returns
GetHashCode()
Gets the hash code for this instance.
public override int GetHashCode()
Returns
GetThumbnail()
Returns the stream that contains the album thumbnail image data.
public Stream GetThumbnail()
Returns
ToString()
Returns a String representation of this Album.
public override string ToString()