MusicProperties.Composers Property

Definition

Gets the composers of the song.

public:
 property IVector<Platform::String ^> ^ Composers { IVector<Platform::String ^> ^ get(); };
IVector<winrt::hstring> Composers();
public IList<string> Composers { get; }
var iVector = musicProperties.composers;
Public ReadOnly Property Composers As IList(Of String)

Property Value

IVector<String>

IList<String>

IVector<Platform::String>

IVector<winrt::hstring>

A list of the names of the song's composers.

Remarks

This property is read-only. It returns a collection, and you can't delete or replace the collection itself. The contents of the collection, however, are not read-only. You can add items to the collection, remove items from the collection, and change existing items in the collection. Call the SavePropertiesAsync method of the parent class to save the updated contents of the collection.

Applies to