Share via


MediaCaptureVideoProfile.FrameSourceInfos Property

Definition

Gets a read-only list of MediaFrameSourceInfo objects which provide details about the capabilities of a MediaFrameSource.

public:
 property IVectorView<MediaFrameSourceInfo ^> ^ FrameSourceInfos { IVectorView<MediaFrameSourceInfo ^> ^ get(); };
IVectorView<MediaFrameSourceInfo> FrameSourceInfos();
public IReadOnlyList<MediaFrameSourceInfo> FrameSourceInfos { get; }
var iVectorView = mediaCaptureVideoProfile.frameSourceInfos;
Public ReadOnly Property FrameSourceInfos As IReadOnlyList(Of MediaFrameSourceInfo)

Property Value

A read-only list of MediaFrameSourceInfo objects.

Windows requirements

Requirements Description
Device family
Windows 10, version 1803 (introduced in 10.0.17134.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v6.0)

Remarks

When you use MediaCapture to capture from a MediaFrameSourceGroup, each individual frame source within the group is described by a MediaFrameSourceInfo. This property allows you to retrieve the MediaFrameSourceInfo objects that are associated with the MediaCaptureVideoProfile.

Applies to

See also