IMediaList Interface

IMediaList interface

The MediaList interface provides the abstraction of an ordered collection of media, without defining or constraining how this collection is implemented. An empty list is the same as a list that contains the medium “all”.

public interface IMediaList : IEnumerable<string>

Properties

NameDescription
Item { get; }Returns the indexth in the list. If index is greater than or equal to the number of media in the list, this returns null. The media index.
Length { get; }The number of media in the list. The range of valid media is 0 to length-1 inclusive.
MediaText { get; }The parsable textual representation of the media list. This is a comma-separated list of media.

Methods

NameDescription
AppendMedium(string)Adds the medium newMedium to the end of the list. If the newMedium is already used, it is first removed.
DeleteMedium(string)Deletes the medium indicated by oldMedium from the list.

See Also