MusicProperties.Writers Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the songwriters.
public:
property IVector<Platform::String ^> ^ Writers { IVector<Platform::String ^> ^ get(); };
IVector<winrt::hstring> Writers();
public IList<string> Writers { get; }
var iVector = musicProperties.writers;
Public ReadOnly Property Writers As IList(Of String)
Property Value
A list of the names of the songwriters.
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.