MediaFrameSource.SupportedFormats 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 a read-only list of MediaFrameFormat objects representing the frame formats supported by the MediaFrameSource.
public:
property IVectorView<MediaFrameFormat ^> ^ SupportedFormats { IVectorView<MediaFrameFormat ^> ^ get(); };
IVectorView<MediaFrameFormat> SupportedFormats();
public IReadOnlyList<MediaFrameFormat> SupportedFormats { get; }
var iVectorView = mediaFrameSource.supportedFormats;
Public ReadOnly Property SupportedFormats As IReadOnlyList(Of MediaFrameFormat)
Property Value
A read-only list of frame formats supported by the media frame source.
Remarks
Get the list of supported frame formats for a media frame source by accessing the SupportedFormats property.
Get the current frame format of the media frame source by accessing the CurrentFormat property. Set the current frame format by calling SetFormatAsync.