CodecInfo.Subtypes Property

Definition

Gets a read-only list of values that specify the media subtypes supported by the codec.

public:
 property IVectorView<Platform::String ^> ^ Subtypes { IVectorView<Platform::String ^> ^ get(); };
IVectorView<winrt::hstring> Subtypes();
public IReadOnlyList<string> Subtypes { get; }
var iVectorView = codecInfo.subtypes;
Public ReadOnly Property Subtypes As IReadOnlyList(Of String)

Property Value

IVectorView<String>

IReadOnlyList<String>

IVectorView<Platform::String>

IVectorView<winrt::hstring>

A read-only list of values that specify the media subtypes supported by the codec.

Remarks

Each value in the list returned by this method is string representation of a GUID that identifies a media subtype that is supported by the codec. For a listing of media subtype GUIDs, see Audio Subtype GUIDs or Video Subtyp GUIDs. The CodecSubtypes class provides properties for most supported media subtypes that return the string representation of the subtype GUID to make it easy to compare against the Subtypes property of a CodecInfo object to see if a codec supports a particular subtype.

Applies to

See also