API | Description |
[MediaStreamSource](mediastreamsource.md) | Represents a media source that delivers media samples directly to the media pipeline. [MediaStreamSource](mediastreamsource.md) consumes [MediaStreamSample](mediastreamsample.md) objects that are provided by the application. |
[MediaStreamSample](mediastreamsample.md) | Represents a media sample used by the [MediaStreamSource](mediastreamsource.md). |
[MediaStreamSource.Starting](mediastreamsource_starting.md) (event) | The [MediaStreamSource](mediastreamsource.md) uses this event to notify the app that it is ready to start processing media data. |
[MediaStreamSourceStartingRequest](mediastreamsourcestartingrequest.md) | Represents a request from the [MediaStreamSource](mediastreamsource.md) that it is ready to start processing media data.
Apps should reply as soon as possible to this request by calling [SetActualStartPosition](mediastreamsourcestartingrequest_setactualstartposition.md) on the request. If an app needs to delay the [MediaStreamSource](mediastreamsource.md) from processing data, it can get an asynchronous deferral from [MediaStreamSourceStartingRequest.GetDeferral](mediastreamsourcestartingrequest_getdeferral.md). When the app is ready for the [MediaStreamSource](mediastreamsource.md) to start, it calls [Complete](mediastreamsourcestartingrequestdeferral_complete.md) on the deferral object.
The starting request is accessed through the [MediaStreamSourceStartingEventArgs](mediastreamsourcestartingeventargs.md) that are passed to the [MediaStreamSource.Starting](mediastreamsource_starting.md) event handler. |
[MediaStreamSource.SampleRequested](mediastreamsource_samplerequested.md) (event) | The [MediaStreamSource](mediastreamsource.md) uses this event to notify the app that it is ready for a [MediaStreamSample](mediastreamsample.md).
Apps are required to register a handler for this event. |
[MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) | Represents a request from the [MediaStreamSource](mediastreamsource.md) for a new media sample. Setting the [Sample](mediastreamsourcesamplerequest_sample.md) property to the new [MediaStreamSample](mediastreamsample.md) triggers the [MediaStreamSource](mediastreamsource.md) to retrieve the media sample and continue processing the media data.
Apps should reply as soon as possible to this request. If an app needs time before sending the [MediaStreamSample](mediastreamsample.md), it can get an asynchronous deferral from [MediaStreamSourceSampleRequest.GetDeferral](mediastreamsourcesamplerequest_getdeferral.md). When the app is finished with the deferral, it calls [Complete](mediastreamsourcesamplerequestdeferral_complete.md) on the deferral object.
The sample request is accessed through the [MediaStreamSourceSampleRequestedEventArgs](mediastreamsourcesamplerequestedeventargs.md) that are passed to the [MediaStreamSource.SampleRequest](mediastreamsource_samplerequested.md) event handler.
The app indicates it has reached the end of the stream by responding to a [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) without providing a [MediaStreamSample](mediastreamsample.md), or by assigning the [MediaStreamSourceSampleRequest.Sample](mediastreamsourcesamplerequest_sample.md) property to **null**. |
[MediaStreamSource.Closed](mediastreamsource_closed.md) (event) | The [MediaStreamSource](mediastreamsource.md) uses this event to notify the app that it has shut down. |
[MediaStreamSourceClosedRequest](mediastreamsourceclosedrequest.md) | Represents a request from the [MediaStreamSource](mediastreamsource.md) that it has closed.
The close request is accessed through the [MediaStreamSourceClosedEventArgs](mediastreamsourceclosedeventargs.md) that are passed to the [MediaStreamSource.Closed](mediastreamsource_closed.md) event handler. |
[MediaElement.SetMediaStreamSource](../windows.ui.xaml.controls/mediaelement_setmediastreamsource.md) | Sets the source of the [MediaElement](../windows.ui.xaml.controls/mediaelement.md) to a [MediaStreamSource](mediastreamsource.md). |
## -examples
## -see-also
[IMediaSource](imediasource.md), [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSource
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource
+
+## -description
+Represents a media source that delivers media samples directly to the media pipeline.
+
+## -remarks
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+[MediaStreamSource](mediastreamsource.md) is a new generic media source for Windows Store app which is introduced in Windows 8.1. [MediaStreamSource](mediastreamsource.md) allows apps to send compressed or uncompressed audio and video samples to the media pipeline for playback, transcoding, and streaming. Media samples can be dynamically generated by the app, or de-multiplexed from a stream or files. This flexibility enables apps to more easily extend platform support for new media formats or solve complex problems, such as adaptive streaming.
+
+The [MediaStreamSource](mediastreamsource.md)API are very similar to the Microsoft SilverlightAPI of the same name.
+
+[MediaStreamSource](mediastreamsource.md) can be used with [audio](XREF:TODO:wwa.HTMLAudioObject) and [video](XREF:TODO:wwa.HTMLVideoObject) objects in Windows app using JavaScript, [MediaElement](../windows.ui.xaml.controls/mediaelement.md) objects in Windows Store app using C++, C#, or Visual Basic, and the [MediaTranscoder](../windows.media.transcoding/mediatranscoder.md).
+
+ The [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) demonstrates how to use the [MediaStreamSource](mediastreamsource.md).Here are some of the main [MediaStreamSource](mediastreamsource.md)API. The order outlines the basic flow of how [MediaStreamSource](mediastreamsource.md) functions. You'll notice that the [MediaStreamSource](mediastreamsource.md) sends request objects to the app through event arguments. These request objects enable the app to interact with the [MediaStreamSource](mediastreamsource.md) and pass data back to it.
+
+
+ API | Description |
+ [MediaStreamSource](mediastreamsource.md) | Represents a media source that delivers media samples directly to the media pipeline. [MediaStreamSource](mediastreamsource.md) consumes [MediaStreamSample](mediastreamsample.md) objects that are provided by the application. |
+ [MediaStreamSample](mediastreamsample.md) | Represents a media sample used by the [MediaStreamSource](mediastreamsource.md). |
+ [MediaStreamSource.Starting](mediastreamsource_starting.md) (event) | The [MediaStreamSource](mediastreamsource.md) uses this event to notify the app that it is ready to start processing media data. |
+ [MediaStreamSourceStartingRequest](mediastreamsourcestartingrequest.md) | Represents a request from the [MediaStreamSource](mediastreamsource.md) that it is ready to start processing media data.
+
+Apps should reply as soon as possible to this request by calling [SetActualStartPosition](mediastreamsourcestartingrequest_setactualstartposition.md) on the request. If an app needs to delay the [MediaStreamSource](mediastreamsource.md) from processing data, it can get an asynchronous deferral from [MediaStreamSourceStartingRequest.GetDeferral](mediastreamsourcestartingrequest_getdeferral.md). When the app is ready for the [MediaStreamSource](mediastreamsource.md) to start, it calls [Complete](mediastreamsourcestartingrequestdeferral_complete.md) on the deferral object.
+
+The starting request is accessed through the [MediaStreamSourceStartingEventArgs](mediastreamsourcestartingeventargs.md) that are passed to the [MediaStreamSource.Starting](mediastreamsource_starting.md) event handler. |
+ [MediaStreamSource.SampleRequested](mediastreamsource_samplerequested.md) (event) | The [MediaStreamSource](mediastreamsource.md) uses this event to notify the app that it is ready for a [MediaStreamSample](mediastreamsample.md).
+
+Apps are required to register a handler for this event. |
+ [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) | Represents a request from the [MediaStreamSource](mediastreamsource.md) for a new media sample. Setting the [Sample](mediastreamsourcesamplerequest_sample.md) property to the new [MediaStreamSample](mediastreamsample.md) triggers the [MediaStreamSource](mediastreamsource.md) to retrieve the media sample and continue processing the media data.
+
+Apps should reply as soon as possible to this request. If an app needs time before sending the [MediaStreamSample](mediastreamsample.md), it can get an asynchronous deferral from [MediaStreamSourceSampleRequest.GetDeferral](mediastreamsourcesamplerequest_getdeferral.md). When the app is finished with the deferral, it calls [Complete](mediastreamsourcesamplerequestdeferral_complete.md) on the deferral object.
+
+The sample request is accessed through the [MediaStreamSourceSampleRequestedEventArgs](mediastreamsourcesamplerequestedeventargs.md) that are passed to the [MediaStreamSource.SampleRequest](mediastreamsource_samplerequested.md) event handler.
+
+The app indicates it has reached the end of the stream by responding to a [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) without providing a [MediaStreamSample](mediastreamsample.md), or by assigning the [MediaStreamSourceSampleRequest.Sample](mediastreamsourcesamplerequest_sample.md) property to **null**. |
+ [MediaStreamSource.Closed](mediastreamsource_closed.md) (event) | The [MediaStreamSource](mediastreamsource.md) uses this event to notify the app that it has shut down. |
+ [MediaStreamSourceClosedRequest](mediastreamsourceclosedrequest.md) | Represents a request from the [MediaStreamSource](mediastreamsource.md) that it has closed.
+
+The close request is accessed through the [MediaStreamSourceClosedEventArgs](mediastreamsourceclosedeventargs.md) that are passed to the [MediaStreamSource.Closed](mediastreamsource_closed.md) event handler. |
+ [MediaElement.SetMediaStreamSource](../windows.ui.xaml.controls/mediaelement_setmediastreamsource.md) | Sets the source of the [MediaElement](../windows.ui.xaml.controls/mediaelement.md) to a [MediaStreamSource](mediastreamsource.md). |
+
+
+## -examples
+
+## -see-also
+[IMediaSource](imediasource.md), [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsource_addprotectionkey_1265554490.md b/windows.media.core/mediastreamsource_addprotectionkey_1265554490.md
index 943f968a18..69e4b0a333 100644
--- a/windows.media.core/mediastreamsource_addprotectionkey_1265554490.md
+++ b/windows.media.core/mediastreamsource_addprotectionkey_1265554490.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSource.AddProtectionKey(Windows.Media.Core.IMediaStreamDescriptor,System.Byte[],System.Byte[])
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSource.AddProtectionKey
## -description
Adds a Digital Rights Management (DRM) protection key which is used by the [MediaProtectionManager](mediastreamsource_mediaprotectionmanager.md) to encrypt and decrypt the specified stream.
## -parameters
### -param streamDescriptor
The stream the key is used to encrypt and decrypt.
### -param keyIdentifier
The key used to encrypt and decrypt the stream.
### -param licenseData
The Digital Rights Management (DRM) licence for the media.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSource.AddProtectionKey(Windows.Media.Core.IMediaStreamDescriptor,System.Byte[],System.Byte[])
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.AddProtectionKey
+
+## -description
+Adds a Digital Rights Management (DRM) protection key which is used by the [MediaProtectionManager](mediastreamsource_mediaprotectionmanager.md) to encrypt and decrypt the specified stream.
+
+## -parameters
+### -param streamDescriptor
+The stream the key is used to encrypt and decrypt.
+
+### -param keyIdentifier
+The key used to encrypt and decrypt the stream.
+
+### -param licenseData
+The Digital Rights Management (DRM) licence for the media.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_addstreamdescriptor_503977765.md b/windows.media.core/mediastreamsource_addstreamdescriptor_503977765.md
index b749a96534..9f5dfe94bc 100644
--- a/windows.media.core/mediastreamsource_addstreamdescriptor_503977765.md
+++ b/windows.media.core/mediastreamsource_addstreamdescriptor_503977765.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSource.AddStreamDescriptor(Windows.Media.Core.IMediaStreamDescriptor)
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSource.AddStreamDescriptor
## -description
Adds a new stream descriptor to the [MediaStreamSource](mediastreamsource.md).
## -parameters
### -param descriptor
The descriptor to add.
## -remarks
This method can only be invoked when the [MediaStreamSource](mediastreamsource.md) is not yet in use by the media pipeline, for example by a [video](XREF:TODO:wwa.HTMLVideoObject) object, a [MediaElement](../windows.ui.xaml.controls/mediaelement.md), or a [MediaTranscoder](../windows.media.transcoding/mediatranscoder.md).
It is possible to invoke this method multiple times.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSource.AddStreamDescriptor(Windows.Media.Core.IMediaStreamDescriptor)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.AddStreamDescriptor
+
+## -description
+Adds a new stream descriptor to the [MediaStreamSource](mediastreamsource.md).
+
+## -parameters
+### -param descriptor
+The descriptor to add.
+
+## -remarks
+This method can only be invoked when the [MediaStreamSource](mediastreamsource.md) is not yet in use by the media pipeline, for example by a [video](XREF:TODO:wwa.HTMLVideoObject) object, a [MediaElement](../windows.ui.xaml.controls/mediaelement.md), or a [MediaTranscoder](../windows.media.transcoding/mediatranscoder.md).
+
+It is possible to invoke this method multiple times.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_buffertime.md b/windows.media.core/mediastreamsource_buffertime.md
index 7f652e72b0..e02312e74b 100644
--- a/windows.media.core/mediastreamsource_buffertime.md
+++ b/windows.media.core/mediastreamsource_buffertime.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSource.BufferTime
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSource.BufferTime
## -description
Gets or sets the amount of data that is buffered by the [MediaStreamSource](mediastreamsource.md).
## -property-value
The duration of the buffer which corresponds to the number of [MediaStreamSamples](mediastreamsample.md) the [MediaStreamSource](mediastreamsource.md) requests. The default value is 3 seconds.
## -remarks
The [MediaStreamSource](mediastreamsource.md) will request a number of [MediaStreamSamples](mediastreamsample.md) in advance. The amount is controlled by the [BufferTime](mediastreamsource_buffertime.md) property. The default value is 3 seconds.
Requesting [MediaStreamSamples](mediastreamsample.md) in advance helps prevent glitches that would otherwise occur if the application does not deliver [MediaStreamSamples](mediastreamsample.md) on time.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSource.BufferTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.BufferTime
+
+## -description
+Gets or sets the amount of data that is buffered by the [MediaStreamSource](mediastreamsource.md).
+
+## -property-value
+The duration of the buffer which corresponds to the number of [MediaStreamSamples](mediastreamsample.md) the [MediaStreamSource](mediastreamsource.md) requests. The default value is 3 seconds.
+
+## -remarks
+The [MediaStreamSource](mediastreamsource.md) will request a number of [MediaStreamSamples](mediastreamsample.md) in advance. The amount is controlled by the [BufferTime](mediastreamsource_buffertime.md) property. The default value is 3 seconds.
+
+Requesting [MediaStreamSamples](mediastreamsample.md) in advance helps prevent glitches that would otherwise occur if the application does not deliver [MediaStreamSamples](mediastreamsample.md) on time.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_canseek.md b/windows.media.core/mediastreamsource_canseek.md
index 2ae4e90a5e..389d03b3a9 100644
--- a/windows.media.core/mediastreamsource_canseek.md
+++ b/windows.media.core/mediastreamsource_canseek.md
@@ -1,3 +1,27 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSource.CanSeek
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSource.CanSeek
## -description
Gets or sets whether or not the application supports changing its position in the media time-line.
## -property-value
**true** if the application supports changing its position in the media time-line; otherwise, **false**. The default value is **false**.
## -remarks
Setting the [CanSeek](mediastreamsource_canseek.md) property to **true** implies that the application is able to handle a [Starting](mediastreamsource_starting.md) event that specifies a start offset other than the current position.
The default value is **false**.
Applications are allowed to change the value of this property at any time.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSource.CanSeek
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.CanSeek
+
+## -description
+Gets or sets whether or not the application supports changing its position in the media time-line.
+
+## -property-value
+**true** if the application supports changing its position in the media time-line; otherwise, **false**. The default value is **false**.
+
+## -remarks
+Setting the [CanSeek](mediastreamsource_canseek.md) property to **true** implies that the application is able to handle a [Starting](mediastreamsource_starting.md) event that specifies a start offset other than the current position.
+
+The default value is **false**.
+
+Applications are allowed to change the value of this property at any time.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_closed.md b/windows.media.core/mediastreamsource_closed.md
index 46e748e282..fef6396be3 100644
--- a/windows.media.core/mediastreamsource_closed.md
+++ b/windows.media.core/mediastreamsource_closed.md
@@ -1,3 +1,25 @@
----
-api-id: E:Windows.Media.Core.MediaStreamSource.Closed
--api-type: winrt event
----
# Windows.Media.Core.MediaStreamSource.Closed
## -description
Occurs when the [MediaStreamSource](mediastreamsource.md) is shutting down.
## -remarks
If the [MediaStreamSource](mediastreamsource.md) is shutting down due to an error, the [Reason](mediastreamsourceclosedrequest_reason.md) property on the [MediaStreamSourceClosedRequest](mediastreamsourceclosedrequest.md) object, which can be obtained from [MediaStreamSourceClosedEventArgs](mediastreamsourceclosedeventargs.md), provides information about the nature of the error.
Upon receiving this event, the application should remove all of its event handlers from the [MediaStreamSource](mediastreamsource.md) object, and refrain from further use of this instance of the [MediaStreamSource](mediastreamsource.md) object.
Applications are not required to have a handler for this event.
## -examples
## -see-also
[MediaStreamSourceClosedEventArgs](mediastreamsourceclosedeventargs.md)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MediaStreamSource.Closed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.Closed
+
+## -description
+Occurs when the [MediaStreamSource](mediastreamsource.md) is shutting down.
+
+## -remarks
+If the [MediaStreamSource](mediastreamsource.md) is shutting down due to an error, the [Reason](mediastreamsourceclosedrequest_reason.md) property on the [MediaStreamSourceClosedRequest](mediastreamsourceclosedrequest.md) object, which can be obtained from [MediaStreamSourceClosedEventArgs](mediastreamsourceclosedeventargs.md), provides information about the nature of the error.
+
+Upon receiving this event, the application should remove all of its event handlers from the [MediaStreamSource](mediastreamsource.md) object, and refrain from further use of this instance of the [MediaStreamSource](mediastreamsource.md) object.
+
+Applications are not required to have a handler for this event.
+
+## -examples
+
+## -see-also
+[MediaStreamSourceClosedEventArgs](mediastreamsourceclosedeventargs.md)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsource_duration.md b/windows.media.core/mediastreamsource_duration.md
index 4c5c543640..718a2a73e1 100644
--- a/windows.media.core/mediastreamsource_duration.md
+++ b/windows.media.core/mediastreamsource_duration.md
@@ -1,3 +1,27 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSource.Duration
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSource.Duration
## -description
Gets or sets the duration of the media time-line.
## -property-value
The duration of the media time-line. The default value is 0.
## -remarks
Applications that support seeking and set [CanSeek](mediastreamsource_canseek.md) to **true** must also assign a value to the [Duration](mediastreamsource_duration.md) property.
The default value is 0, which means that the duration is unspecified. Live media or media that is being generated in real-time might have a [Duration](mediastreamsource_duration.md) value of 0, since the actual duration is unknown.
Applications are allowed to change the value of this property at any time. For example, after a live broadcast has ended, the [Duration](mediastreamsource_duration.md) value can be updated from 0 to the actual length of the live broadcast.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSource.Duration
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.Duration
+
+## -description
+Gets or sets the duration of the media time-line.
+
+## -property-value
+The duration of the media time-line. The default value is 0.
+
+## -remarks
+Applications that support seeking and set [CanSeek](mediastreamsource_canseek.md) to **true** must also assign a value to the [Duration](mediastreamsource_duration.md) property.
+
+The default value is 0, which means that the duration is unspecified. Live media or media that is being generated in real-time might have a [Duration](mediastreamsource_duration.md) value of 0, since the actual duration is unknown.
+
+Applications are allowed to change the value of this property at any time. For example, after a live broadcast has ended, the [Duration](mediastreamsource_duration.md) value can be updated from 0 to the actual length of the live broadcast.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_mediaprotectionmanager.md b/windows.media.core/mediastreamsource_mediaprotectionmanager.md
index 848d04077d..aa1b415322 100644
--- a/windows.media.core/mediastreamsource_mediaprotectionmanager.md
+++ b/windows.media.core/mediastreamsource_mediaprotectionmanager.md
@@ -1,3 +1,34 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSource.MediaProtectionManager
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSource.MediaProtectionManager
## -description
Gets or sets the Digital Rights Management (DRM)[MediaProtectionManager](../windows.media.protection/mediaprotectionmanager.md) used to protect the media.
## -property-value
The media protection manager.
## -remarks
If any of the streams are protected, the application must set the [MediaProtectionManager](mediastreamsource_mediaprotectionmanager.md) property on the [MediaStreamSource](mediastreamsource.md).
The [MediaStreamSource](mediastreamsource.md) requires that the following properties be present in the PropertySet object returned by [MediaProtectionManager.Properties](../windows.media.protection/mediaprotectionmanager_properties.md):
+ [Windows.Media.Protection.MediaProtectionSystemId](../windows.media.protection/mediaprotectionmanager_properties.md)
+ [Windows.Media.Protection.MediaProtectionSystemIdMapping
](../windows.media.protection/mediaprotectionmanager_properties.md)
[MediaStreamSource](mediastreamsource.md) will use the value of the following optional property when initializing the content protection system:
+ [Windows.Media.Protection.MediaProtectionSystemContext](../windows.media.protection/mediaprotectionmanager_properties.md)
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSource.MediaProtectionManager
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.MediaProtectionManager
+
+## -description
+Gets or sets the Digital Rights Management (DRM)[MediaProtectionManager](../windows.media.protection/mediaprotectionmanager.md) used to protect the media.
+
+## -property-value
+The media protection manager.
+
+## -remarks
+If any of the streams are protected, the application must set the [MediaProtectionManager](mediastreamsource_mediaprotectionmanager.md) property on the [MediaStreamSource](mediastreamsource.md).
+
+The [MediaStreamSource](mediastreamsource.md) requires that the following properties be present in the PropertySet object returned by [MediaProtectionManager.Properties](../windows.media.protection/mediaprotectionmanager_properties.md):
++ [Windows.Media.Protection.MediaProtectionSystemId](../windows.media.protection/mediaprotectionmanager_properties.md)
++ [Windows.Media.Protection.MediaProtectionSystemIdMapping
+
+](../windows.media.protection/mediaprotectionmanager_properties.md)
+[MediaStreamSource](mediastreamsource.md) will use the value of the following optional property when initializing the content protection system:
++ [Windows.Media.Protection.MediaProtectionSystemContext](../windows.media.protection/mediaprotectionmanager_properties.md)
+
+
+
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_mediastreamsource_1712288544.md b/windows.media.core/mediastreamsource_mediastreamsource_1712288544.md
index e58f7d4509..97923df8e5 100644
--- a/windows.media.core/mediastreamsource_mediastreamsource_1712288544.md
+++ b/windows.media.core/mediastreamsource_mediastreamsource_1712288544.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSource.#ctor(Windows.Media.Core.IMediaStreamDescriptor)
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSource.MediaStreamSource
## -description
Creates an instance of [MediaStreamSource](mediastreamsource.md) from the specified [IMediaStreamDescriptor](imediastreamdescriptor.md).
## -parameters
### -param descriptor
The [AudioStreamDescriptor](audiostreamdescriptor.md) or [VideoStreamDescriptor](videostreamdescriptor.md) to create the [MediaStreamSource](mediastreamsource.md) from.
## -remarks
This constructor creates a [MediaStreamSource](mediastreamsource.md) using a single [AudioStreamDescriptor](audiostreamdescriptor.md) or [VideoStreamDescriptor](videostreamdescriptor.md) object. If the [MediaStreamSource](mediastreamsource.md) needs descriptors, the [MediaStreamSource](mediastreamsource_mediastreamsource_998833464.md) constructor overload which takes two descriptor can be used.
It is possible to add additional descriptors to a [MediaStreamSource](mediastreamsource.md) after it has been created, by invoking the [AddStreamDescriptor](mediastreamsource_addstreamdescriptor.md) method.
## -examples
## -see-also
[MediaStreamSource(IMediaStreamDescriptor, IMediaStreamDescriptor)](mediastreamsource_mediastreamsource_998833464.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSource.#ctor(Windows.Media.Core.IMediaStreamDescriptor)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.MediaStreamSource
+
+## -description
+Creates an instance of [MediaStreamSource](mediastreamsource.md) from the specified [IMediaStreamDescriptor](imediastreamdescriptor.md).
+
+## -parameters
+### -param descriptor
+The [AudioStreamDescriptor](audiostreamdescriptor.md) or [VideoStreamDescriptor](videostreamdescriptor.md) to create the [MediaStreamSource](mediastreamsource.md) from.
+
+## -remarks
+This constructor creates a [MediaStreamSource](mediastreamsource.md) using a single [AudioStreamDescriptor](audiostreamdescriptor.md) or [VideoStreamDescriptor](videostreamdescriptor.md) object. If the [MediaStreamSource](mediastreamsource.md) needs descriptors, the [MediaStreamSource](mediastreamsource_mediastreamsource_998833464.md) constructor overload which takes two descriptor can be used.
+
+It is possible to add additional descriptors to a [MediaStreamSource](mediastreamsource.md) after it has been created, by invoking the [AddStreamDescriptor](mediastreamsource_addstreamdescriptor.md) method.
+
+## -examples
+
+## -see-also
+[MediaStreamSource(IMediaStreamDescriptor, IMediaStreamDescriptor)](mediastreamsource_mediastreamsource_998833464.md)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsource_mediastreamsource_998833464.md b/windows.media.core/mediastreamsource_mediastreamsource_998833464.md
index 4fd9bbdc4f..193f1ea83a 100644
--- a/windows.media.core/mediastreamsource_mediastreamsource_998833464.md
+++ b/windows.media.core/mediastreamsource_mediastreamsource_998833464.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSource.#ctor(Windows.Media.Core.IMediaStreamDescriptor,Windows.Media.Core.IMediaStreamDescriptor)
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSource.MediaStreamSource
## -description
Creates an instance of [MediaStreamSource](mediastreamsource.md) from two [IMediaStreamDescriptor](imediastreamdescriptor.md) objects.
## -parameters
### -param descriptor
The first [AudioStreamDescriptor](audiostreamdescriptor.md) or [VideoStreamDescriptor](videostreamdescriptor.md) to create the [MediaStreamSource](mediastreamsource.md) from.
### -param descriptor2
The second [AudioStreamDescriptor](audiostreamdescriptor.md) or [VideoStreamDescriptor](videostreamdescriptor.md) to create the [MediaStreamSource](mediastreamsource.md) from.
## -remarks
This constructor creates a [MediaStreamSource](mediastreamsource.md) using a two [AudioStreamDescriptor](audiostreamdescriptor.md) or [VideoStreamDescriptor](videostreamdescriptor.md) objects. If the [MediaStreamSource](mediastreamsource.md) needs only on descriptor, the [MediaStreamSource](mediastreamsource_mediastreamsource_1712288544.md) constructor overload which takes two descriptor can be used.
It is possible to add additional descriptors to a [MediaStreamSource](mediastreamsource.md) after it has been created, by invoking the [AddStreamDescriptor](mediastreamsource_addstreamdescriptor.md) method.
## -examples
## -see-also
[MediaStreamSource(IMediaStreamDescriptor)](mediastreamsource_mediastreamsource_1712288544.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSource.#ctor(Windows.Media.Core.IMediaStreamDescriptor,Windows.Media.Core.IMediaStreamDescriptor)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.MediaStreamSource
+
+## -description
+Creates an instance of [MediaStreamSource](mediastreamsource.md) from two [IMediaStreamDescriptor](imediastreamdescriptor.md) objects.
+
+## -parameters
+### -param descriptor
+The first [AudioStreamDescriptor](audiostreamdescriptor.md) or [VideoStreamDescriptor](videostreamdescriptor.md) to create the [MediaStreamSource](mediastreamsource.md) from.
+
+### -param descriptor2
+The second [AudioStreamDescriptor](audiostreamdescriptor.md) or [VideoStreamDescriptor](videostreamdescriptor.md) to create the [MediaStreamSource](mediastreamsource.md) from.
+
+## -remarks
+This constructor creates a [MediaStreamSource](mediastreamsource.md) using a two [AudioStreamDescriptor](audiostreamdescriptor.md) or [VideoStreamDescriptor](videostreamdescriptor.md) objects. If the [MediaStreamSource](mediastreamsource.md) needs only on descriptor, the [MediaStreamSource](mediastreamsource_mediastreamsource_1712288544.md) constructor overload which takes two descriptor can be used.
+
+It is possible to add additional descriptors to a [MediaStreamSource](mediastreamsource.md) after it has been created, by invoking the [AddStreamDescriptor](mediastreamsource_addstreamdescriptor.md) method.
+
+## -examples
+
+## -see-also
+[MediaStreamSource(IMediaStreamDescriptor)](mediastreamsource_mediastreamsource_1712288544.md)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsource_musicproperties.md b/windows.media.core/mediastreamsource_musicproperties.md
index b7981b14b8..d554514032 100644
--- a/windows.media.core/mediastreamsource_musicproperties.md
+++ b/windows.media.core/mediastreamsource_musicproperties.md
@@ -1,3 +1,27 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSource.MusicProperties
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSource.MusicProperties
## -description
Gets the music properties which are used for music-related metadata.
## -property-value
The music properties.
## -remarks
[MusicProperties](mediastreamsource_musicproperties.md) is a music-oriented view of the [MediaStreamSource](mediastreamsource.md) properties.
Applications are allowed to modify the properties of [MusicProperties](mediastreamsource_musicproperties.md) at any time.
Applications should be aware that there is overlap with [VideoProperties](mediastreamsource_videoproperties.md). A change to the [MusicProperties](mediastreamsource_musicproperties.md) may modify a similar property in the [VideoProperties](mediastreamsource_videoproperties.md), and vice versa.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSource.MusicProperties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.MusicProperties
+
+## -description
+Gets the music properties which are used for music-related metadata.
+
+## -property-value
+The music properties.
+
+## -remarks
+[MusicProperties](mediastreamsource_musicproperties.md) is a music-oriented view of the [MediaStreamSource](mediastreamsource.md) properties.
+
+Applications are allowed to modify the properties of [MusicProperties](mediastreamsource_musicproperties.md) at any time.
+
+Applications should be aware that there is overlap with [VideoProperties](mediastreamsource_videoproperties.md). A change to the [MusicProperties](mediastreamsource_musicproperties.md) may modify a similar property in the [VideoProperties](mediastreamsource_videoproperties.md), and vice versa.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_notifyerror_645943664.md b/windows.media.core/mediastreamsource_notifyerror_645943664.md
index 2ef70bf6f6..1caf0e5250 100644
--- a/windows.media.core/mediastreamsource_notifyerror_645943664.md
+++ b/windows.media.core/mediastreamsource_notifyerror_645943664.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSource.NotifyError(Windows.Media.Core.MediaStreamSourceErrorStatus)
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSource.NotifyError
## -description
Notifies the [MediaStreamSource](mediastreamsource.md) that an error has occurred which is preventing the application from continuing to deliver data to the [MediaStreamSource](mediastreamsource.md).
## -parameters
### -param errorStatus
The cause of the error.
## -remarks
The application should invoke this method when it has encountered an unrecoverable error, for example, loss of the network connection to a media server or an out-of-memory condition.
The [MediaStreamSource](mediastreamsource.md) will raise the [Closed](mediastreamsource_closed.md) event when this method is invoked.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSource.NotifyError(Windows.Media.Core.MediaStreamSourceErrorStatus)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.NotifyError
+
+## -description
+Notifies the [MediaStreamSource](mediastreamsource.md) that an error has occurred which is preventing the application from continuing to deliver data to the [MediaStreamSource](mediastreamsource.md).
+
+## -parameters
+### -param errorStatus
+The cause of the error.
+
+## -remarks
+The application should invoke this method when it has encountered an unrecoverable error, for example, loss of the network connection to a media server or an out-of-memory condition.
+
+The [MediaStreamSource](mediastreamsource.md) will raise the [Closed](mediastreamsource_closed.md) event when this method is invoked.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_paused.md b/windows.media.core/mediastreamsource_paused.md
index 182c5800e2..7074c2731e 100644
--- a/windows.media.core/mediastreamsource_paused.md
+++ b/windows.media.core/mediastreamsource_paused.md
@@ -1,3 +1,22 @@
----
-api-id: E:Windows.Media.Core.MediaStreamSource.Paused
--api-type: winrt event
----
# Windows.Media.Core.MediaStreamSource.Paused
## -description
Occurs when the [MediaStreamSource](mediastreamsource.md) is paused and stops requesting [MediaStreamSample](mediastreamsample.md) objects for an unspecified period of time, but is expected to resume requesting [MediaStreamSample](mediastreamsample.md) objects from the current position.
## -remarks
This event might be raised by the user pressing a “Pause” button in the UI. When the user decides to resume playback, it is likely that the [Starting](mediastreamsource_starting.md) event will indicate that the [MediaStreamSample](mediastreamsample.md) objects should continue to be delivered from the current position. The [Paused](mediastreamsource_paused.md) event serves as a hint to the application that the next [Starting](mediastreamsource_starting.md) event will specify the current position.
The event is informational. Applications are not required to have a handler for this event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MediaStreamSource.Paused
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.Paused
+
+## -description
+Occurs when the [MediaStreamSource](mediastreamsource.md) is paused and stops requesting [MediaStreamSample](mediastreamsample.md) objects for an unspecified period of time, but is expected to resume requesting [MediaStreamSample](mediastreamsample.md) objects from the current position.
+
+## -remarks
+This event might be raised by the user pressing a “Pause” button in the UI. When the user decides to resume playback, it is likely that the [Starting](mediastreamsource_starting.md) event will indicate that the [MediaStreamSample](mediastreamsample.md) objects should continue to be delivered from the current position. The [Paused](mediastreamsource_paused.md) event serves as a hint to the application that the next [Starting](mediastreamsource_starting.md) event will specify the current position.
+
+The event is informational. Applications are not required to have a handler for this event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_samplerendered.md b/windows.media.core/mediastreamsource_samplerendered.md
index 23ac7bdb2c..24987a7637 100644
--- a/windows.media.core/mediastreamsource_samplerendered.md
+++ b/windows.media.core/mediastreamsource_samplerendered.md
@@ -1,3 +1,20 @@
----
-api-id: E:Windows.Media.Core.MediaStreamSource.SampleRendered
--api-type: winrt event
----
# Windows.Media.Core.MediaStreamSource.SampleRendered
## -description
Occurs when a sample from the [MediaStreamSource](mediastreamsource.md) is rendered.
## -remarks
Use this event to determine if there is a lag in the rendering of a sample, in which case you may decide to switch to a lower-bandwidth stream.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MediaStreamSource.SampleRendered
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.SampleRendered
+
+## -description
+Occurs when a sample from the [MediaStreamSource](mediastreamsource.md) is rendered.
+
+## -remarks
+Use this event to determine if there is a lag in the rendering of a sample, in which case you may decide to switch to a lower-bandwidth stream.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_samplerequested.md b/windows.media.core/mediastreamsource_samplerequested.md
index 068e5a241a..e9ff35b395 100644
--- a/windows.media.core/mediastreamsource_samplerequested.md
+++ b/windows.media.core/mediastreamsource_samplerequested.md
@@ -1,3 +1,25 @@
----
-api-id: E:Windows.Media.Core.MediaStreamSource.SampleRequested
--api-type: winrt event
----
# Windows.Media.Core.MediaStreamSource.SampleRequested
## -description
Occurs when the [MediaStreamSource](mediastreamsource.md) request a [MediaStreamSample](mediastreamsample.md) for a specified stream.
## -remarks
Upon receiving this event, the application should assign a [MediaStreamSample](mediastreamsample.md) for the requested stream to the [Sample](mediastreamsourcesamplerequest_sample.md) property of the [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) object.
If the application is temporarily unable to deliver the [MediaStreamSample](mediastreamsample.md), it should obtain the [MediaStreamSourceSampleRequestDeferral](mediastreamsourcesamplerequestdeferral.md) object and invoke [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) on a regular basis until it assigns a [MediaStreamSample](mediastreamsample.md) to the [Sample](mediastreamsourcesamplerequest_sample.md) property and calls [Complete](mediastreamsourcesamplerequestdeferral_complete.md) on the [MediaStreamSourceSampleRequestDeferral](mediastreamsourcesamplerequestdeferral.md) object. The recommended interval between each invocation of [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) is 500 milliseconds.
If the specified stream does not have any more samples, the application should leave the [Sample](mediastreamsourcesamplerequest_sample.md) property unassigned or set it to **null**.
## -examples
## -see-also
[MediaStreamSourceSampleRequestedEventArgs](mediastreamsourcesamplerequestedeventargs.md)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MediaStreamSource.SampleRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.SampleRequested
+
+## -description
+Occurs when the [MediaStreamSource](mediastreamsource.md) request a [MediaStreamSample](mediastreamsample.md) for a specified stream.
+
+## -remarks
+Upon receiving this event, the application should assign a [MediaStreamSample](mediastreamsample.md) for the requested stream to the [Sample](mediastreamsourcesamplerequest_sample.md) property of the [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) object.
+
+If the application is temporarily unable to deliver the [MediaStreamSample](mediastreamsample.md), it should obtain the [MediaStreamSourceSampleRequestDeferral](mediastreamsourcesamplerequestdeferral.md) object and invoke [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) on a regular basis until it assigns a [MediaStreamSample](mediastreamsample.md) to the [Sample](mediastreamsourcesamplerequest_sample.md) property and calls [Complete](mediastreamsourcesamplerequestdeferral_complete.md) on the [MediaStreamSourceSampleRequestDeferral](mediastreamsourcesamplerequestdeferral.md) object. The recommended interval between each invocation of [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) is 500 milliseconds.
+
+If the specified stream does not have any more samples, the application should leave the [Sample](mediastreamsourcesamplerequest_sample.md) property unassigned or set it to **null**.
+
+## -examples
+
+## -see-also
+[MediaStreamSourceSampleRequestedEventArgs](mediastreamsourcesamplerequestedeventargs.md)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsource_setbufferedrange_149711772.md b/windows.media.core/mediastreamsource_setbufferedrange_149711772.md
index d300b04d7d..97934fd033 100644
--- a/windows.media.core/mediastreamsource_setbufferedrange_149711772.md
+++ b/windows.media.core/mediastreamsource_setbufferedrange_149711772.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSource.SetBufferedRange(Windows.Foundation.TimeSpan,Windows.Foundation.TimeSpan)
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSource.SetBufferedRange
## -description
Sets the range of data that the application is currently buffering.
## -parameters
### -param startOffset
The smallest time stamp of a [MediaStreamSample](mediastreamsample.md) buffered by the application.
### -param endOffset
The largest time stamp of a [MediaStreamSample](mediastreamsample.md) buffered by the application.
## -remarks
Applications that use the network to stream or download the data for [MediaStreamSamples](mediastreamsample.md) should invoke [SetBufferedRange](mediastreamsource_setbufferedrange.md) to specify what portion of the time-line is currently buffered. If the buffered range extends from 0 to the value of [Duration](mediastreamsource_duration.md), and [Duration](mediastreamsource_duration.md) is non-zero, the operating system may allow the network hardware to enter a power saving mode.
By default, the buffered range is assumed to be empty when the [CanSeek](mediastreamsource_canseek.md) property is **false** or when the [Duration](mediastreamsource_duration.md) property is 0. If [CanSeek](mediastreamsource_canseek.md) is **true**, the buffered range default is 0 to [Duration](mediastreamsource_duration.md)
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSource.SetBufferedRange(Windows.Foundation.TimeSpan,Windows.Foundation.TimeSpan)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.SetBufferedRange
+
+## -description
+Sets the range of data that the application is currently buffering.
+
+## -parameters
+### -param startOffset
+The smallest time stamp of a [MediaStreamSample](mediastreamsample.md) buffered by the application.
+
+### -param endOffset
+The largest time stamp of a [MediaStreamSample](mediastreamsample.md) buffered by the application.
+
+## -remarks
+Applications that use the network to stream or download the data for [MediaStreamSamples](mediastreamsample.md) should invoke [SetBufferedRange](mediastreamsource_setbufferedrange.md) to specify what portion of the time-line is currently buffered. If the buffered range extends from 0 to the value of [Duration](mediastreamsource_duration.md), and [Duration](mediastreamsource_duration.md) is non-zero, the operating system may allow the network hardware to enter a power saving mode.
+
+By default, the buffered range is assumed to be empty when the [CanSeek](mediastreamsource_canseek.md) property is **false** or when the [Duration](mediastreamsource_duration.md) property is 0. If [CanSeek](mediastreamsource_canseek.md) is **true**, the buffered range default is 0 to [Duration](mediastreamsource_duration.md)
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_starting.md b/windows.media.core/mediastreamsource_starting.md
index 0d8b91772f..f271be7f97 100644
--- a/windows.media.core/mediastreamsource_starting.md
+++ b/windows.media.core/mediastreamsource_starting.md
@@ -1,3 +1,27 @@
----
-api-id: E:Windows.Media.Core.MediaStreamSource.Starting
--api-type: winrt event
----
# Windows.Media.Core.MediaStreamSource.Starting
## -description
Occurs when the [MediaStreamSource](mediastreamsource.md) is ready to start requesting [MediaStreamSample](mediastreamsample.md) objects. The event can specify a position in the media time-line from which the first [MediaStreamSample](mediastreamsample.md) should be delivered.
## -remarks
The [MediaStreamSource](mediastreamsource.md) raises this event before it starts requesting [MediaStreamSamples](mediastreamsample.md) for the first time. It also raises the event when it resumes requesting [MediaStreamSamples](mediastreamsample.md) after a [Paused](mediastreamsource_paused.md) event has occurred.
Upon receiving this event, the application must invoke the [SetActualStartPosition](mediastreamsourcestartingrequest_setactualstartposition.md) method on the [MediaStreamSourceStartingRequest](mediastreamsourcestartingrequest.md) object to specify the actual position in the time-line from which [MediaStreamSample](mediastreamsample.md) objects will be retrieved.
This event cancels any [SampleRequested](mediastreamsource_samplerequested.md) events the application has not delivered the requested [MediaStreamSample](mediastreamsample.md) for. However, application must still invoke the [Complete](mediastreamsourcesamplerequestdeferral_complete.md) method on the [MediaStreamSourceSampleRequestDeferral](mediastreamsourcesamplerequestdeferral.md) object for any previous [SampleRequested](mediastreamsource_samplerequested.md) events.
Applications are only required to have a handler for the [Starting](mediastreamsource_starting.md) event if [MediaStreamSource.CanSeek](mediastreamsource_canseek.md) is set to **true** and they support seeking.
## -examples
## -see-also
[MediaStreamSourceStartingEventArgs](mediastreamsourcestartingeventargs.md)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MediaStreamSource.Starting
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.Starting
+
+## -description
+Occurs when the [MediaStreamSource](mediastreamsource.md) is ready to start requesting [MediaStreamSample](mediastreamsample.md) objects. The event can specify a position in the media time-line from which the first [MediaStreamSample](mediastreamsample.md) should be delivered.
+
+## -remarks
+The [MediaStreamSource](mediastreamsource.md) raises this event before it starts requesting [MediaStreamSamples](mediastreamsample.md) for the first time. It also raises the event when it resumes requesting [MediaStreamSamples](mediastreamsample.md) after a [Paused](mediastreamsource_paused.md) event has occurred.
+
+Upon receiving this event, the application must invoke the [SetActualStartPosition](mediastreamsourcestartingrequest_setactualstartposition.md) method on the [MediaStreamSourceStartingRequest](mediastreamsourcestartingrequest.md) object to specify the actual position in the time-line from which [MediaStreamSample](mediastreamsample.md) objects will be retrieved.
+
+This event cancels any [SampleRequested](mediastreamsource_samplerequested.md) events the application has not delivered the requested [MediaStreamSample](mediastreamsample.md) for. However, application must still invoke the [Complete](mediastreamsourcesamplerequestdeferral_complete.md) method on the [MediaStreamSourceSampleRequestDeferral](mediastreamsourcesamplerequestdeferral.md) object for any previous [SampleRequested](mediastreamsource_samplerequested.md) events.
+
+Applications are only required to have a handler for the [Starting](mediastreamsource_starting.md) event if [MediaStreamSource.CanSeek](mediastreamsource_canseek.md) is set to **true** and they support seeking.
+
+## -examples
+
+## -see-also
+[MediaStreamSourceStartingEventArgs](mediastreamsourcestartingeventargs.md)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsource_switchstreamsrequested.md b/windows.media.core/mediastreamsource_switchstreamsrequested.md
index dec46c0db4..cde0ee3b1c 100644
--- a/windows.media.core/mediastreamsource_switchstreamsrequested.md
+++ b/windows.media.core/mediastreamsource_switchstreamsrequested.md
@@ -1,3 +1,23 @@
----
-api-id: E:Windows.Media.Core.MediaStreamSource.SwitchStreamsRequested
--api-type: winrt event
----
# Windows.Media.Core.MediaStreamSource.SwitchStreamsRequested
## -description
Occurs when the [MediaStreamSource](mediastreamsource.md) will stop requesting [MediaStreamSample](mediastreamsample.md) objects for a certain stream and will start requesting [MediaStreamSample](mediastreamsample.md) objects from a different stream instead.
## -remarks
This event can be raised when there are multiple audio stream descriptors or multiple video stream descriptors. Normally, only one audio stream and one video stream will be selected at any given time. This event is raised when the currently selected audio or video stream is replaced by a different stream.
The event is informational. Applications are not required to have a handler for this event.
## -examples
## -see-also
[MediaStreamSourceSwitchStreamsRequestedEventArgs](mediastreamsourceswitchstreamsrequestedeventargs.md)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MediaStreamSource.SwitchStreamsRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.SwitchStreamsRequested
+
+## -description
+Occurs when the [MediaStreamSource](mediastreamsource.md) will stop requesting [MediaStreamSample](mediastreamsample.md) objects for a certain stream and will start requesting [MediaStreamSample](mediastreamsample.md) objects from a different stream instead.
+
+## -remarks
+This event can be raised when there are multiple audio stream descriptors or multiple video stream descriptors. Normally, only one audio stream and one video stream will be selected at any given time. This event is raised when the currently selected audio or video stream is replaced by a different stream.
+
+The event is informational. Applications are not required to have a handler for this event.
+
+## -examples
+
+## -see-also
+[MediaStreamSourceSwitchStreamsRequestedEventArgs](mediastreamsourceswitchstreamsrequestedeventargs.md)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsource_thumbnail.md b/windows.media.core/mediastreamsource_thumbnail.md
index d253ea73f6..49df03cc72 100644
--- a/windows.media.core/mediastreamsource_thumbnail.md
+++ b/windows.media.core/mediastreamsource_thumbnail.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSource.Thumbnail
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSource.Thumbnail
## -description
Gets or sets the thumbnail which is a reference to a stream for a video thumbnail image or music album art.
## -property-value
The reference to the thumbnail stream.
## -remarks
The stream is treated as a video thumbnail if the [MediaStreamSource](mediastreamsource.md) has at least one video stream; otherwise, the stream is treated as music album art.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSource.Thumbnail
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.Thumbnail
+
+## -description
+Gets or sets the thumbnail which is a reference to a stream for a video thumbnail image or music album art.
+
+## -property-value
+The reference to the thumbnail stream.
+
+## -remarks
+The stream is treated as a video thumbnail if the [MediaStreamSource](mediastreamsource.md) has at least one video stream; otherwise, the stream is treated as music album art.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsource_videoproperties.md b/windows.media.core/mediastreamsource_videoproperties.md
index 89c2a90a30..0fb1e0cef2 100644
--- a/windows.media.core/mediastreamsource_videoproperties.md
+++ b/windows.media.core/mediastreamsource_videoproperties.md
@@ -1,3 +1,27 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSource.VideoProperties
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSource.VideoProperties
## -description
Gets the video properties which are used for video related metadata.
## -property-value
The video properties.
## -remarks
[VideoProperties](mediastreamsource_videoproperties.md) is a video-oriented view of the [MediaStreamSource](mediastreamsource.md) properties.
Applications are allowed to modify the properties of [VideoProperties](mediastreamsource_videoproperties.md) at any time.
Applications should be aware that there is overlap with [MusicProperties](mediastreamsource_musicproperties.md). A change to the [VideoProperties](mediastreamsource_videoproperties.md) may modify a similar property in the [MusicProperties](mediastreamsource_musicproperties.md) property, and vice versa.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSource.VideoProperties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSource.VideoProperties
+
+## -description
+Gets the video properties which are used for video related metadata.
+
+## -property-value
+The video properties.
+
+## -remarks
+[VideoProperties](mediastreamsource_videoproperties.md) is a video-oriented view of the [MediaStreamSource](mediastreamsource.md) properties.
+
+Applications are allowed to modify the properties of [VideoProperties](mediastreamsource_videoproperties.md) at any time.
+
+Applications should be aware that there is overlap with [MusicProperties](mediastreamsource_musicproperties.md). A change to the [VideoProperties](mediastreamsource_videoproperties.md) may modify a similar property in the [MusicProperties](mediastreamsource_musicproperties.md) property, and vice versa.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourceclosedeventargs.md b/windows.media.core/mediastreamsourceclosedeventargs.md
index dba61cfdab..baa6876a6b 100644
--- a/windows.media.core/mediastreamsourceclosedeventargs.md
+++ b/windows.media.core/mediastreamsourceclosedeventargs.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceClosedEventArgs
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceClosedEventArgs
## -description
Provides data for the [MediaStreamSource.Closed](mediastreamsource_closed.md) event.
## -remarks
This object is not instantiated directly, it is created by the [MediaStreamSource.Closed](mediastreamsource_closed.md) event.
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Universal Windows app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceClosedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceClosedEventArgs
+
+## -description
+Provides data for the [MediaStreamSource.Closed](mediastreamsource_closed.md) event.
+
+## -remarks
+This object is not instantiated directly, it is created by the [MediaStreamSource.Closed](mediastreamsource_closed.md) event.
+
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Universal Windows app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourceclosedeventargs_request.md b/windows.media.core/mediastreamsourceclosedeventargs_request.md
index 391f10d53d..6d07385c33 100644
--- a/windows.media.core/mediastreamsourceclosedeventargs_request.md
+++ b/windows.media.core/mediastreamsourceclosedeventargs_request.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceClosedEventArgs.Request
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceClosedEventArgs.Request
## -description
Gets the object that represents the notification that the [MediaStreamSource](mediastreamsource.md) has been closed.
## -property-value
Provides information regarding why the [MediaStreamSource](mediastreamsource.md) was closed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceClosedEventArgs.Request
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceClosedEventArgs.Request
+
+## -description
+Gets the object that represents the notification that the [MediaStreamSource](mediastreamsource.md) has been closed.
+
+## -property-value
+Provides information regarding why the [MediaStreamSource](mediastreamsource.md) was closed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourceclosedrequest.md b/windows.media.core/mediastreamsourceclosedrequest.md
index ff942bc9c1..a16928e15a 100644
--- a/windows.media.core/mediastreamsourceclosedrequest.md
+++ b/windows.media.core/mediastreamsourceclosedrequest.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceClosedRequest
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceClosedRequest
## -description
Represents an object to be used by the [MediaStreamSource.closed](mediastreamsource_closed.md) event to provide information to the application.
## -remarks
The [Reason](mediastreamsourceclosedreason.md) property provides information regrading why the [MediaStreamSource](mediastreamsource.md) was closed.
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceClosedRequest
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceClosedRequest
+
+## -description
+Represents an object to be used by the [MediaStreamSource.closed](mediastreamsource_closed.md) event to provide information to the application.
+
+## -remarks
+The [Reason](mediastreamsourceclosedreason.md) property provides information regrading why the [MediaStreamSource](mediastreamsource.md) was closed.
+
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourceclosedrequest_reason.md b/windows.media.core/mediastreamsourceclosedrequest_reason.md
index f52966baf5..0472386866 100644
--- a/windows.media.core/mediastreamsourceclosedrequest_reason.md
+++ b/windows.media.core/mediastreamsourceclosedrequest_reason.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceClosedRequest.Reason
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceClosedRequest.Reason
## -description
Gets the reason why the media stream source was closed.
## -property-value
The reason why the media stream source was closed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceClosedRequest.Reason
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceClosedRequest.Reason
+
+## -description
+Gets the reason why the media stream source was closed.
+
+## -property-value
+The reason why the media stream source was closed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcesamplerenderedeventargs.md b/windows.media.core/mediastreamsourcesamplerenderedeventargs.md
index feda9fd2b5..23cac79913 100644
--- a/windows.media.core/mediastreamsourcesamplerenderedeventargs.md
+++ b/windows.media.core/mediastreamsourcesamplerenderedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceSampleRenderedEventArgs
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceSampleRenderedEventArgs
## -description
Provides data for the [MediaStreamSource.SampleRendered](mediastreamsource_samplerendered.md) event, which occurs when a sample from a [MediaStreamSource](mediastreamsource.md) is rendered. Use [SampleLag](mediastreamsourcesamplerenderedeventargs_samplelag.md) property to determine if there is a lag in the rendering of a sample, in which case you may decide to switch to a lower-bandwidth stream.
## -remarks
Get an instance of this class by handling the [MediaStreamSource.SampleRendered](mediastreamsource_samplerendered.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceSampleRenderedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRenderedEventArgs
+
+## -description
+Provides data for the [MediaStreamSource.SampleRendered](mediastreamsource_samplerendered.md) event, which occurs when a sample from a [MediaStreamSource](mediastreamsource.md) is rendered. Use [SampleLag](mediastreamsourcesamplerenderedeventargs_samplelag.md) property to determine if there is a lag in the rendering of a sample, in which case you may decide to switch to a lower-bandwidth stream.
+
+## -remarks
+Get an instance of this class by handling the [MediaStreamSource.SampleRendered](mediastreamsource_samplerendered.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcesamplerenderedeventargs_samplelag.md b/windows.media.core/mediastreamsourcesamplerenderedeventargs_samplelag.md
index 57d2eefa4d..efc0ba4b78 100644
--- a/windows.media.core/mediastreamsourcesamplerenderedeventargs_samplelag.md
+++ b/windows.media.core/mediastreamsourcesamplerenderedeventargs_samplelag.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceSampleRenderedEventArgs.SampleLag
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceSampleRenderedEventArgs.SampleLag
## -description
Gets a time span representing the lag with which a sample was rendered.
## -property-value
The lag with which a sample was rendered.
## -remarks
If the value of this property is greater than 0, then the sample was rendered late. In this case, depending on the size of the lag, you may choose to switch to a lower bandwidth stream in order to reduce lag.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceSampleRenderedEventArgs.SampleLag
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRenderedEventArgs.SampleLag
+
+## -description
+Gets a time span representing the lag with which a sample was rendered.
+
+## -property-value
+The lag with which a sample was rendered.
+
+## -remarks
+If the value of this property is greater than 0, then the sample was rendered late. In this case, depending on the size of the lag, you may choose to switch to a lower bandwidth stream in order to reduce lag.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcesamplerequest.md b/windows.media.core/mediastreamsourcesamplerequest.md
index 6ffabfe527..432a84741c 100644
--- a/windows.media.core/mediastreamsourcesamplerequest.md
+++ b/windows.media.core/mediastreamsourcesamplerequest.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceSampleRequest
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceSampleRequest
## -description
Represents an object to be used by the [MediaStreamSource.SampleRequest](mediastreamsource_samplerequested.md) event to provide information to the application.
## -remarks
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceSampleRequest
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRequest
+
+## -description
+Represents an object to be used by the [MediaStreamSource.SampleRequest](mediastreamsource_samplerequested.md) event to provide information to the application.
+
+## -remarks
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourcesamplerequest_getdeferral_254836512.md b/windows.media.core/mediastreamsourcesamplerequest_getdeferral_254836512.md
index c27645ed1e..f15482f31b 100644
--- a/windows.media.core/mediastreamsourcesamplerequest_getdeferral_254836512.md
+++ b/windows.media.core/mediastreamsourcesamplerequest_getdeferral_254836512.md
@@ -1,3 +1,25 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSourceSampleRequest.GetDeferral
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSourceSampleRequest.GetDeferral
## -description
Defers assigning a [MediaStreamSample](mediastreamsample.md) to [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) object.
## -returns
The deferral.
## -remarks
You can use a deferral when you want to make an asynchronous call to retrieve the [MediaStreamSample](mediastreamsample.md). The [MediaStreamSource](mediastreamsource.md) will then wait for you to supply the [MediaStreamSample](mediastreamsample.md) until you mark the deferral as complete.
To create a deferral, call the [GetDeferral](mediastreamsourcesamplerequest_getdeferral.md) method to instruct the [MediaStreamSource](mediastreamsource.md) to wait for the [MediaStreamSample](mediastreamsample.md). After you have assigned the [MediaStreamSample](mediastreamsample.md) to the [Sample](mediastreamsourcesamplerequest_sample.md) property of the [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) object, call the [MediaStreamSourceSampleRequestDeferral.Complete](mediastreamsourcesamplerequestdeferral_complete.md) method to end the deferral.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSourceSampleRequest.GetDeferral
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRequest.GetDeferral
+
+## -description
+Defers assigning a [MediaStreamSample](mediastreamsample.md) to [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) object.
+
+## -returns
+The deferral.
+
+## -remarks
+You can use a deferral when you want to make an asynchronous call to retrieve the [MediaStreamSample](mediastreamsample.md). The [MediaStreamSource](mediastreamsource.md) will then wait for you to supply the [MediaStreamSample](mediastreamsample.md) until you mark the deferral as complete.
+
+To create a deferral, call the [GetDeferral](mediastreamsourcesamplerequest_getdeferral.md) method to instruct the [MediaStreamSource](mediastreamsource.md) to wait for the [MediaStreamSample](mediastreamsample.md). After you have assigned the [MediaStreamSample](mediastreamsample.md) to the [Sample](mediastreamsourcesamplerequest_sample.md) property of the [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) object, call the [MediaStreamSourceSampleRequestDeferral.Complete](mediastreamsourcesamplerequestdeferral_complete.md) method to end the deferral.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcesamplerequest_reportsampleprogress_2045860101.md b/windows.media.core/mediastreamsourcesamplerequest_reportsampleprogress_2045860101.md
index 3e691e7e84..10b1ec92c0 100644
--- a/windows.media.core/mediastreamsourcesamplerequest_reportsampleprogress_2045860101.md
+++ b/windows.media.core/mediastreamsourcesamplerequest_reportsampleprogress_2045860101.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSourceSampleRequest.ReportSampleProgress(System.UInt32)
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSourceSampleRequest.ReportSampleProgress
## -description
Provides a status update to the [MediaStreamSource](mediastreamsource.md) while the application is temporarily unable to deliver a requested [MediaStreamSample](mediastreamsample.md).
## -parameters
### -param progress
A value between 0 to 100 that indicates the progress towards being able to deliver the requested [MediaStreamSample](mediastreamsample.md).
## -remarks
The application should invoke this method when it is unable to immediately to deliver the [MediaStreamSample](mediastreamsample.md), which is accomplished by assigning it to the [Sample](mediastreamsourcesamplerequest_sample.md) property. The application should continue to invoke [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) on a regular basis until it is able to deliver the requested [MediaStreamSample](mediastreamsample.md).
The recommended interval between each invocation of [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) is 500 milliseconds.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSourceSampleRequest.ReportSampleProgress(System.UInt32)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRequest.ReportSampleProgress
+
+## -description
+Provides a status update to the [MediaStreamSource](mediastreamsource.md) while the application is temporarily unable to deliver a requested [MediaStreamSample](mediastreamsample.md).
+
+## -parameters
+### -param progress
+A value between 0 to 100 that indicates the progress towards being able to deliver the requested [MediaStreamSample](mediastreamsample.md).
+
+## -remarks
+The application should invoke this method when it is unable to immediately to deliver the [MediaStreamSample](mediastreamsample.md), which is accomplished by assigning it to the [Sample](mediastreamsourcesamplerequest_sample.md) property. The application should continue to invoke [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) on a regular basis until it is able to deliver the requested [MediaStreamSample](mediastreamsample.md).
+
+The recommended interval between each invocation of [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) is 500 milliseconds.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcesamplerequest_sample.md b/windows.media.core/mediastreamsourcesamplerequest_sample.md
index 57c2506442..83f1ff4d74 100644
--- a/windows.media.core/mediastreamsourcesamplerequest_sample.md
+++ b/windows.media.core/mediastreamsourcesamplerequest_sample.md
@@ -1,3 +1,33 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceSampleRequest.Sample
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceSampleRequest.Sample
## -description
Sets the [MediaStreamSample](mediastreamsample.md) requested by the [MediaStreamSource](mediastreamsource.md). Applications deliver a [MediaStreamSample](mediastreamsample.md) to the [MediaStreamSource](mediastreamsource.md) by assigning a value to this property.
## -property-value
The sample which is delivered to the [MediaStreamSource](mediastreamsource.md) when this property is set. The default value is **null**.
## -remarks
The initial value of this property is **null**.
The application should allocate a [MediaStreamSample](mediastreamsample.md) and deliver it to the [MediaStreamSource](mediastreamsource.md) by assigning the [MediaStreamSample](mediastreamsample.md) to this property.
If there are no more [MediaStreamSamples](mediastreamsample.md) to deliver to the stream identified by the [StreamDescriptor](mediastreamsourcesamplerequest_streamdescriptor.md) property because the end of the stream has been reached, then the application should set the [Sample](mediastreamsourcesamplerequest_sample.md) property to **null**.
If the application needs to perform an asynchronous operation to retrieve the [MediaStreamSample](mediastreamsample.md), it should invoke the [GetDeferral](mediastreamsourcesamplerequest_getdeferral.md) method to indicate that the assignment of the [Sample](mediastreamsourcesamplerequest_sample.md) property has been deferred.
If a [MediaStreamSample](mediastreamsample.md) is not currently available, for example, because it has not yet been downloaded from a server, the application should call [GetDeferral](mediastreamsourcesamplerequest_getdeferral.md) and also call [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) on as the necessary data is being downloaded.
The recommended interval between each invocation of [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) is 500 milliseconds.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceSampleRequest.Sample
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRequest.Sample
+
+## -description
+Sets the [MediaStreamSample](mediastreamsample.md) requested by the [MediaStreamSource](mediastreamsource.md). Applications deliver a [MediaStreamSample](mediastreamsample.md) to the [MediaStreamSource](mediastreamsource.md) by assigning a value to this property.
+
+## -property-value
+The sample which is delivered to the [MediaStreamSource](mediastreamsource.md) when this property is set. The default value is **null**.
+
+## -remarks
+The initial value of this property is **null**.
+
+The application should allocate a [MediaStreamSample](mediastreamsample.md) and deliver it to the [MediaStreamSource](mediastreamsource.md) by assigning the [MediaStreamSample](mediastreamsample.md) to this property.
+
+If there are no more [MediaStreamSamples](mediastreamsample.md) to deliver to the stream identified by the [StreamDescriptor](mediastreamsourcesamplerequest_streamdescriptor.md) property because the end of the stream has been reached, then the application should set the [Sample](mediastreamsourcesamplerequest_sample.md) property to **null**.
+
+If the application needs to perform an asynchronous operation to retrieve the [MediaStreamSample](mediastreamsample.md), it should invoke the [GetDeferral](mediastreamsourcesamplerequest_getdeferral.md) method to indicate that the assignment of the [Sample](mediastreamsourcesamplerequest_sample.md) property has been deferred.
+
+If a [MediaStreamSample](mediastreamsample.md) is not currently available, for example, because it has not yet been downloaded from a server, the application should call [GetDeferral](mediastreamsourcesamplerequest_getdeferral.md) and also call [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) on as the necessary data is being downloaded.
+
+The recommended interval between each invocation of [ReportSampleProgress](mediastreamsourcesamplerequest_reportsampleprogress.md) is 500 milliseconds.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcesamplerequest_streamdescriptor.md b/windows.media.core/mediastreamsourcesamplerequest_streamdescriptor.md
index 5235eb101d..1e0f85437a 100644
--- a/windows.media.core/mediastreamsourcesamplerequest_streamdescriptor.md
+++ b/windows.media.core/mediastreamsourcesamplerequest_streamdescriptor.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceSampleRequest.StreamDescriptor
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceSampleRequest.StreamDescriptor
## -description
Gets the [IMediaStreamDescriptor](imediastreamdescriptor.md) interface of the stream for which a [MediaStreamSample](mediastreamsample.md) is being requested.
## -property-value
The stream for which the [MediaStreamSample](mediastreamsample.md) is being requested.
## -remarks
The [Sample](mediastreamsourcesamplerequest_sample.md) property of the [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) object should be assigned a [MediaStreamSample](mediastreamsample.md) belonging to the stream identified by the [StreamDescriptor](mediastreamsourcesamplerequest_streamdescriptor.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceSampleRequest.StreamDescriptor
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRequest.StreamDescriptor
+
+## -description
+Gets the [IMediaStreamDescriptor](imediastreamdescriptor.md) interface of the stream for which a [MediaStreamSample](mediastreamsample.md) is being requested.
+
+## -property-value
+The stream for which the [MediaStreamSample](mediastreamsample.md) is being requested.
+
+## -remarks
+The [Sample](mediastreamsourcesamplerequest_sample.md) property of the [MediaStreamSourceSampleRequest](mediastreamsourcesamplerequest.md) object should be assigned a [MediaStreamSample](mediastreamsample.md) belonging to the stream identified by the [StreamDescriptor](mediastreamsourcesamplerequest_streamdescriptor.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcesamplerequestdeferral.md b/windows.media.core/mediastreamsourcesamplerequestdeferral.md
index 2a02639825..6af852de0e 100644
--- a/windows.media.core/mediastreamsourcesamplerequestdeferral.md
+++ b/windows.media.core/mediastreamsourcesamplerequestdeferral.md
@@ -1,3 +1,25 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceSampleRequestDeferral
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceSampleRequestDeferral
## -description
Provides a way for the application to asynchronously report that it has completed retrieving the [MediaStreamSample](mediastreamsample.md).
## -remarks
You can use a deferral to retrieve the [MediaStreamSample](mediastreamsample.md) asynchronously. The [MediaStreamSource](mediastreamsource.md) will wait until you mark the deferral as complete.
To create a deferral, call [MediaStreamSourceSampleRequest.GetDeferral](mediastreamsourcesamplerequest_getdeferral.md). This will instruct the [MediaStreamSource](mediastreamsource.md) to wait for the [MediaStreamSample](mediastreamsample.md). After you have assigned the [MediaStreamSample](mediastreamsample.md) to the [MediaStreamSourceSampleRequest.Sample](mediastreamsourcesamplerequest_sample.md) property, call the [Complete](mediastreamsourcesamplerequestdeferral_complete.md) method to end the deferral.
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceSampleRequestDeferral
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRequestDeferral
+
+## -description
+Provides a way for the application to asynchronously report that it has completed retrieving the [MediaStreamSample](mediastreamsample.md).
+
+## -remarks
+You can use a deferral to retrieve the [MediaStreamSample](mediastreamsample.md) asynchronously. The [MediaStreamSource](mediastreamsource.md) will wait until you mark the deferral as complete.
+
+To create a deferral, call [MediaStreamSourceSampleRequest.GetDeferral](mediastreamsourcesamplerequest_getdeferral.md). This will instruct the [MediaStreamSource](mediastreamsource.md) to wait for the [MediaStreamSample](mediastreamsample.md). After you have assigned the [MediaStreamSample](mediastreamsample.md) to the [MediaStreamSourceSampleRequest.Sample](mediastreamsourcesamplerequest_sample.md) property, call the [Complete](mediastreamsourcesamplerequestdeferral_complete.md) method to end the deferral.
+
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourcesamplerequestdeferral_complete_1807836922.md b/windows.media.core/mediastreamsourcesamplerequestdeferral_complete_1807836922.md
index 577f67fd52..667679a5d5 100644
--- a/windows.media.core/mediastreamsourcesamplerequestdeferral_complete_1807836922.md
+++ b/windows.media.core/mediastreamsourcesamplerequestdeferral_complete_1807836922.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSourceSampleRequestDeferral.Complete
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSourceSampleRequestDeferral.Complete
## -description
Reports that the application has completed retrieving the [MediaStreamSample](mediastreamsample.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSourceSampleRequestDeferral.Complete
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRequestDeferral.Complete
+
+## -description
+Reports that the application has completed retrieving the [MediaStreamSample](mediastreamsample.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcesamplerequestedeventargs.md b/windows.media.core/mediastreamsourcesamplerequestedeventargs.md
index 8f2783e126..469f31b504 100644
--- a/windows.media.core/mediastreamsourcesamplerequestedeventargs.md
+++ b/windows.media.core/mediastreamsourcesamplerequestedeventargs.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceSampleRequestedEventArgs
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceSampleRequestedEventArgs
## -description
Provides the data for the [SampleRequested](mediastreamsource_samplerequested.md) event.
## -remarks
This object is not instantiated directly, it is created by the [MediaStreamSource.SampleRequest](mediastreamsource_samplerequested.md) event.
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceSampleRequestedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRequestedEventArgs
+
+## -description
+Provides the data for the [SampleRequested](mediastreamsource_samplerequested.md) event.
+
+## -remarks
+This object is not instantiated directly, it is created by the [MediaStreamSource.SampleRequest](mediastreamsource_samplerequested.md) event.
+
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourcesamplerequestedeventargs_request.md b/windows.media.core/mediastreamsourcesamplerequestedeventargs_request.md
index 5cc905e027..4f6e6d2a48 100644
--- a/windows.media.core/mediastreamsourcesamplerequestedeventargs_request.md
+++ b/windows.media.core/mediastreamsourcesamplerequestedeventargs_request.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceSampleRequestedEventArgs.Request
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceSampleRequestedEventArgs.Request
## -description
Gets the object that represents the request for a [MediaStreamSample](mediastreamsample.md).
## -property-value
Provides information regrading the request for a [MediaStreamSample](mediastreamsample.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceSampleRequestedEventArgs.Request
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSampleRequestedEventArgs.Request
+
+## -description
+Gets the object that represents the request for a [MediaStreamSample](mediastreamsample.md).
+
+## -property-value
+Provides information regrading the request for a [MediaStreamSample](mediastreamsample.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcestartingeventargs.md b/windows.media.core/mediastreamsourcestartingeventargs.md
index 5914e605d3..df79767dfc 100644
--- a/windows.media.core/mediastreamsourcestartingeventargs.md
+++ b/windows.media.core/mediastreamsourcestartingeventargs.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceStartingEventArgs
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceStartingEventArgs
## -description
Provides data for the [MediaStreamSource.Starting](mediastreamsource_starting.md) event.
## -remarks
This object is not instantiated directly, it is created by the [MediaStreamSource.Starting](mediastreamsource_starting.md) event.
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceStartingEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceStartingEventArgs
+
+## -description
+Provides data for the [MediaStreamSource.Starting](mediastreamsource_starting.md) event.
+
+## -remarks
+This object is not instantiated directly, it is created by the [MediaStreamSource.Starting](mediastreamsource_starting.md) event.
+
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourcestartingeventargs_request.md b/windows.media.core/mediastreamsourcestartingeventargs_request.md
index 0d7e4b3b77..68cc4ca8b1 100644
--- a/windows.media.core/mediastreamsourcestartingeventargs_request.md
+++ b/windows.media.core/mediastreamsourcestartingeventargs_request.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceStartingEventArgs.Request
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceStartingEventArgs.Request
## -description
Gets the object that represents the request to start accumulating [MediaStreamSample](mediastreamsample.md) data.
## -property-value
Provides information regrading the request to start accumulating [MediaStreamSample](mediastreamsample.md) data.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceStartingEventArgs.Request
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceStartingEventArgs.Request
+
+## -description
+Gets the object that represents the request to start accumulating [MediaStreamSample](mediastreamsample.md) data.
+
+## -property-value
+Provides information regrading the request to start accumulating [MediaStreamSample](mediastreamsample.md) data.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcestartingrequest.md b/windows.media.core/mediastreamsourcestartingrequest.md
index 5c30010430..48f21df9f1 100644
--- a/windows.media.core/mediastreamsourcestartingrequest.md
+++ b/windows.media.core/mediastreamsourcestartingrequest.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceStartingRequest
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceStartingRequest
## -description
Represents a request from the [MediaStreamSource.Starting](mediastreamsource_starting.md) event for the application to start accumulating [MediaStreamSample](mediastreamsample.md) objects from a specific position in the media.
## -remarks
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceStartingRequest
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceStartingRequest
+
+## -description
+Represents a request from the [MediaStreamSource.Starting](mediastreamsource_starting.md) event for the application to start accumulating [MediaStreamSample](mediastreamsample.md) objects from a specific position in the media.
+
+## -remarks
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourcestartingrequest_getdeferral_254836512.md b/windows.media.core/mediastreamsourcestartingrequest_getdeferral_254836512.md
index c0071358fc..feece67d7b 100644
--- a/windows.media.core/mediastreamsourcestartingrequest_getdeferral_254836512.md
+++ b/windows.media.core/mediastreamsourcestartingrequest_getdeferral_254836512.md
@@ -1,3 +1,25 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSourceStartingRequest.GetDeferral
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSourceStartingRequest.GetDeferral
## -description
Defers completing the [MediaStreamSource.Starting](mediastreamsource_starting.md) event.
## -returns
The deferral.
## -remarks
You can use a deferral when you want to make an asynchronous call in response to the [Starting](mediastreamsource_starting.md) event. For example, if you need to establish a HTTP connection or open a file for reading. The [MediaStreamSource](mediastreamsource.md) will then wait for you to mark the deferral as complete before it begins raising the [SampleRequested](mediastreamsource_samplerequested.md) event.
To create a deferral, call the [GetDeferral](mediastreamsourcestartingrequest_getdeferral.md) method to instruct the [MediaStreamSource](mediastreamsource.md) to wait for your asynchronous call to complete. When you are ready to start receiving [SampleRequested](mediastreamsource_samplerequested.md) events, call the [Complete](mediastreamsourcestartingrequestdeferral_complete.md) method to end the deferral.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSourceStartingRequest.GetDeferral
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceStartingRequest.GetDeferral
+
+## -description
+Defers completing the [MediaStreamSource.Starting](mediastreamsource_starting.md) event.
+
+## -returns
+The deferral.
+
+## -remarks
+You can use a deferral when you want to make an asynchronous call in response to the [Starting](mediastreamsource_starting.md) event. For example, if you need to establish a HTTP connection or open a file for reading. The [MediaStreamSource](mediastreamsource.md) will then wait for you to mark the deferral as complete before it begins raising the [SampleRequested](mediastreamsource_samplerequested.md) event.
+
+To create a deferral, call the [GetDeferral](mediastreamsourcestartingrequest_getdeferral.md) method to instruct the [MediaStreamSource](mediastreamsource.md) to wait for your asynchronous call to complete. When you are ready to start receiving [SampleRequested](mediastreamsource_samplerequested.md) events, call the [Complete](mediastreamsourcestartingrequestdeferral_complete.md) method to end the deferral.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcestartingrequest_setactualstartposition_661405035.md b/windows.media.core/mediastreamsourcestartingrequest_setactualstartposition_661405035.md
index 0363c9321a..d8c4b901f9 100644
--- a/windows.media.core/mediastreamsourcestartingrequest_setactualstartposition_661405035.md
+++ b/windows.media.core/mediastreamsourcestartingrequest_setactualstartposition_661405035.md
@@ -1,3 +1,24 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSourceStartingRequest.SetActualStartPosition(Windows.Foundation.TimeSpan)
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSourceStartingRequest.SetActualStartPosition
## -description
Specifies the starting position in the media time-line for subsequent [MediaStreamSamples](mediastreamsample.md) that will be delivered to the [MediaStreamSource](mediastreamsource.md).
## -parameters
### -param position
The actual starting point in the media time-line chosen by the application.
## -remarks
The application should choose the value of *position* such that the values of the [Timestamp](mediastreamsample_timestamp.md) property of the [MediaStreamSample](mediastreamsample.md) objects will be greater than or equal to position, for all currently selected streams.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSourceStartingRequest.SetActualStartPosition(Windows.Foundation.TimeSpan)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceStartingRequest.SetActualStartPosition
+
+## -description
+Specifies the starting position in the media time-line for subsequent [MediaStreamSamples](mediastreamsample.md) that will be delivered to the [MediaStreamSource](mediastreamsource.md).
+
+## -parameters
+### -param position
+The actual starting point in the media time-line chosen by the application.
+
+## -remarks
+The application should choose the value of *position* such that the values of the [Timestamp](mediastreamsample_timestamp.md) property of the [MediaStreamSample](mediastreamsample.md) objects will be greater than or equal to position, for all currently selected streams.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcestartingrequest_startposition.md b/windows.media.core/mediastreamsourcestartingrequest_startposition.md
index 235ccdeb40..f489e06c20 100644
--- a/windows.media.core/mediastreamsourcestartingrequest_startposition.md
+++ b/windows.media.core/mediastreamsourcestartingrequest_startposition.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceStartingRequest.StartPosition
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceStartingRequest.StartPosition
## -description
Specifies a reference to a [TimeSpan](http://msdn.microsoft.com/library/fbc6ecc2-6372-4b15-9532-3cd68a72e7b4) object which represents a time position in the media time-line from which the application should return [MediaStreamSample](mediastreamsample.md) objects.
## -property-value
A reference that points to a [TimeSpan](http://msdn.microsoft.com/library/fbc6ecc2-6372-4b15-9532-3cd68a72e7b4) which specifies the position in the media time-line to start sending [MediaStreamSample](mediastreamsample.md) objects. If the reference is **null**, the application should continue to return [MediaStreamSample](mediastreamsample.md) objects from the current position.
## -remarks
If *StartPosition* is not **null**, then the [TimeSpan](http://msdn.microsoft.com/library/fbc6ecc2-6372-4b15-9532-3cd68a72e7b4) specifies the position in the media time-line from which the application should deliver [MediaStreamSamples](mediastreamsample.md). If the reference is **null**, the application is not supposed to change its position and it should then continue to return [MediaStreamSamples](mediastreamsample.md) from the current position.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceStartingRequest.StartPosition
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceStartingRequest.StartPosition
+
+## -description
+Specifies a reference to a [TimeSpan](http://msdn.microsoft.com/library/fbc6ecc2-6372-4b15-9532-3cd68a72e7b4) object which represents a time position in the media time-line from which the application should return [MediaStreamSample](mediastreamsample.md) objects.
+
+## -property-value
+A reference that points to a [TimeSpan](http://msdn.microsoft.com/library/fbc6ecc2-6372-4b15-9532-3cd68a72e7b4) which specifies the position in the media time-line to start sending [MediaStreamSample](mediastreamsample.md) objects. If the reference is **null**, the application should continue to return [MediaStreamSample](mediastreamsample.md) objects from the current position.
+
+## -remarks
+If *StartPosition* is not **null**, then the [TimeSpan](http://msdn.microsoft.com/library/fbc6ecc2-6372-4b15-9532-3cd68a72e7b4) specifies the position in the media time-line from which the application should deliver [MediaStreamSamples](mediastreamsample.md). If the reference is **null**, the application is not supposed to change its position and it should then continue to return [MediaStreamSamples](mediastreamsample.md) from the current position.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourcestartingrequestdeferral.md b/windows.media.core/mediastreamsourcestartingrequestdeferral.md
index c57247662f..6ddec32b58 100644
--- a/windows.media.core/mediastreamsourcestartingrequestdeferral.md
+++ b/windows.media.core/mediastreamsourcestartingrequestdeferral.md
@@ -1,3 +1,25 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceStartingRequestDeferral
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceStartingRequestDeferral
## -description
Provides a way for the application to asynchronously report that it has completed processing the [MediaStreamSource.Starting](mediastreamsource_starting.md) event.
## -remarks
You can use a deferral when you want to make an asynchronous call in response to the [MediaStreamSource.Starting](mediastreamsource_starting.md) event. For example, if you need to establish a HTTP connection or open a file for reading. The [MediaStreamSource](mediastreamsource.md) will then wait for you to mark the deferral as complete before it begins raising the [SampleRequested](mediastreamsource_samplerequested.md) event.
To create a deferral, call the [GetDeferral](mediastreamsourcestartingrequest_getdeferral.md) method on the [MediaStreamSourceStartingRequest](mediastreamsourcestartingrequest.md) object to instruct the [MediaStreamSource](mediastreamsource.md) to wait for your asynchronous call to complete. When you are ready to start receiving [SampleRequested](mediastreamsource_samplerequested.md) events, call the [Complete](mediastreamsourcestartingrequestdeferral_complete.md) method to end the deferral.
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceStartingRequestDeferral
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceStartingRequestDeferral
+
+## -description
+Provides a way for the application to asynchronously report that it has completed processing the [MediaStreamSource.Starting](mediastreamsource_starting.md) event.
+
+## -remarks
+You can use a deferral when you want to make an asynchronous call in response to the [MediaStreamSource.Starting](mediastreamsource_starting.md) event. For example, if you need to establish a HTTP connection or open a file for reading. The [MediaStreamSource](mediastreamsource.md) will then wait for you to mark the deferral as complete before it begins raising the [SampleRequested](mediastreamsource_samplerequested.md) event.
+
+To create a deferral, call the [GetDeferral](mediastreamsourcestartingrequest_getdeferral.md) method on the [MediaStreamSourceStartingRequest](mediastreamsourcestartingrequest.md) object to instruct the [MediaStreamSource](mediastreamsource.md) to wait for your asynchronous call to complete. When you are ready to start receiving [SampleRequested](mediastreamsource_samplerequested.md) events, call the [Complete](mediastreamsourcestartingrequestdeferral_complete.md) method to end the deferral.
+
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourcestartingrequestdeferral_complete_1807836922.md b/windows.media.core/mediastreamsourcestartingrequestdeferral_complete_1807836922.md
index 435ec5d35b..d5b696410f 100644
--- a/windows.media.core/mediastreamsourcestartingrequestdeferral_complete_1807836922.md
+++ b/windows.media.core/mediastreamsourcestartingrequestdeferral_complete_1807836922.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSourceStartingRequestDeferral.Complete
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSourceStartingRequestDeferral.Complete
## -description
Reports that the application has completed processing the Starting event.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSourceStartingRequestDeferral.Complete
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceStartingRequestDeferral.Complete
+
+## -description
+Reports that the application has completed processing the Starting event.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourceswitchstreamsrequest.md b/windows.media.core/mediastreamsourceswitchstreamsrequest.md
index 8099b2ce6a..90d7c67eb3 100644
--- a/windows.media.core/mediastreamsourceswitchstreamsrequest.md
+++ b/windows.media.core/mediastreamsourceswitchstreamsrequest.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest
## -description
Represents an object to be used by the [MediaStreamSource.SwitchStreamsRequest](mediastreamsource_switchstreamsrequested.md) event to provide information to the application.
## -remarks
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest
+
+## -description
+Represents an object to be used by the [MediaStreamSource.SwitchStreamsRequest](mediastreamsource_switchstreamsrequested.md) event to provide information to the application.
+
+## -remarks
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourceswitchstreamsrequest_getdeferral_254836512.md b/windows.media.core/mediastreamsourceswitchstreamsrequest_getdeferral_254836512.md
index ce300851a9..9c1d72d601 100644
--- a/windows.media.core/mediastreamsourceswitchstreamsrequest_getdeferral_254836512.md
+++ b/windows.media.core/mediastreamsourceswitchstreamsrequest_getdeferral_254836512.md
@@ -1,3 +1,25 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.GetDeferral
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.GetDeferral
## -description
Defers completing the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event.
## -returns
The deferral.
## -remarks
You can use a deferral when you want to make an asynchronous call in response to the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event. For example, if you need to establish a HTTP connection or open a file for reading. The [MediaStreamSource](mediastreamsource.md) will then wait for you to mark the deferral as complete before it begins raising the [SampleRequested](mediastreamsource_samplerequested.md) event.
To create a deferral, call the [GetDeferral](mediastreamsourceswitchstreamsrequest_getdeferral.md) method to instruct the [MediaStreamSource](mediastreamsource.md) to wait for your asynchronous call to complete. When you are ready to start receiving [SampleRequested](mediastreamsource_samplerequested.md) events, call the [Complete](mediastreamsourceswitchstreamsrequestdeferral_complete.md) method to end the deferral.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.GetDeferral
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.GetDeferral
+
+## -description
+Defers completing the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event.
+
+## -returns
+The deferral.
+
+## -remarks
+You can use a deferral when you want to make an asynchronous call in response to the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event. For example, if you need to establish a HTTP connection or open a file for reading. The [MediaStreamSource](mediastreamsource.md) will then wait for you to mark the deferral as complete before it begins raising the [SampleRequested](mediastreamsource_samplerequested.md) event.
+
+To create a deferral, call the [GetDeferral](mediastreamsourceswitchstreamsrequest_getdeferral.md) method to instruct the [MediaStreamSource](mediastreamsource.md) to wait for your asynchronous call to complete. When you are ready to start receiving [SampleRequested](mediastreamsource_samplerequested.md) events, call the [Complete](mediastreamsourceswitchstreamsrequestdeferral_complete.md) method to end the deferral.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourceswitchstreamsrequest_newstreamdescriptor.md b/windows.media.core/mediastreamsourceswitchstreamsrequest_newstreamdescriptor.md
index f4f4c50fe6..3a16323676 100644
--- a/windows.media.core/mediastreamsourceswitchstreamsrequest_newstreamdescriptor.md
+++ b/windows.media.core/mediastreamsourceswitchstreamsrequest_newstreamdescriptor.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.NewStreamDescriptor
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.NewStreamDescriptor
## -description
Gets the stream descriptor for the stream that is now selected by the [MediaStreamSource](mediastreamsource.md).
## -property-value
The selected stream.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.NewStreamDescriptor
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.NewStreamDescriptor
+
+## -description
+Gets the stream descriptor for the stream that is now selected by the [MediaStreamSource](mediastreamsource.md).
+
+## -property-value
+The selected stream.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourceswitchstreamsrequest_oldstreamdescriptor.md b/windows.media.core/mediastreamsourceswitchstreamsrequest_oldstreamdescriptor.md
index 799207f9b1..cd0d21a3a5 100644
--- a/windows.media.core/mediastreamsourceswitchstreamsrequest_oldstreamdescriptor.md
+++ b/windows.media.core/mediastreamsourceswitchstreamsrequest_oldstreamdescriptor.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.OldStreamDescriptor
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.OldStreamDescriptor
## -description
Gets the stream descriptor for the stream which is no longer selected by the [MediaStreamSource](mediastreamsource.md).
## -property-value
The previously selected stream.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.OldStreamDescriptor
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequest.OldStreamDescriptor
+
+## -description
+Gets the stream descriptor for the stream which is no longer selected by the [MediaStreamSource](mediastreamsource.md).
+
+## -property-value
+The previously selected stream.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourceswitchstreamsrequestdeferral.md b/windows.media.core/mediastreamsourceswitchstreamsrequestdeferral.md
index bde8325fc5..ddea29b0fe 100644
--- a/windows.media.core/mediastreamsourceswitchstreamsrequestdeferral.md
+++ b/windows.media.core/mediastreamsourceswitchstreamsrequestdeferral.md
@@ -1,3 +1,25 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestDeferral
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestDeferral
## -description
Provides a way for the application to asynchronously report that it has completed the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event.
## -remarks
You can use a deferral when you want to make an asynchronous call in response to the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event. For example, if you need to establish a HTTP connection or open a file for reading. The [MediaStreamSource](mediastreamsource.md) will then wait for you to mark the deferral as complete before it begins raising the [SampleRequested](mediastreamsource_samplerequested.md) event.
To create a deferral, call the [GetDeferral](mediastreamsourceswitchstreamsrequest_getdeferral.md) method on the [MediaStreamSourceSwitchStreamsRequest](mediastreamsourceswitchstreamsrequestdeferral.md) object to instruct the [MediaStreamSource](mediastreamsource.md) to wait for your asynchronous call to complete. When you are ready to start receiving [SampleRequested](mediastreamsource_samplerequested.md) events, call the [Complete](mediastreamsourceswitchstreamsrequestdeferral_complete.md) method to end the deferral.
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestDeferral
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestDeferral
+
+## -description
+Provides a way for the application to asynchronously report that it has completed the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event.
+
+## -remarks
+You can use a deferral when you want to make an asynchronous call in response to the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event. For example, if you need to establish a HTTP connection or open a file for reading. The [MediaStreamSource](mediastreamsource.md) will then wait for you to mark the deferral as complete before it begins raising the [SampleRequested](mediastreamsource_samplerequested.md) event.
+
+To create a deferral, call the [GetDeferral](mediastreamsourceswitchstreamsrequest_getdeferral.md) method on the [MediaStreamSourceSwitchStreamsRequest](mediastreamsourceswitchstreamsrequestdeferral.md) object to instruct the [MediaStreamSource](mediastreamsource.md) to wait for your asynchronous call to complete. When you are ready to start receiving [SampleRequested](mediastreamsource_samplerequested.md) events, call the [Complete](mediastreamsourceswitchstreamsrequestdeferral_complete.md) method to end the deferral.
+
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourceswitchstreamsrequestdeferral_complete_1807836922.md b/windows.media.core/mediastreamsourceswitchstreamsrequestdeferral_complete_1807836922.md
index a92d90d87a..cbcf85a8ce 100644
--- a/windows.media.core/mediastreamsourceswitchstreamsrequestdeferral_complete_1807836922.md
+++ b/windows.media.core/mediastreamsourceswitchstreamsrequestdeferral_complete_1807836922.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestDeferral.Complete
--api-type: winrt method
----
# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestDeferral.Complete
## -description
Reports that the application has completed processing the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestDeferral.Complete
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestDeferral.Complete
+
+## -description
+Reports that the application has completed processing the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/mediastreamsourceswitchstreamsrequestedeventargs.md b/windows.media.core/mediastreamsourceswitchstreamsrequestedeventargs.md
index 67e63e26ea..c6f3a833cd 100644
--- a/windows.media.core/mediastreamsourceswitchstreamsrequestedeventargs.md
+++ b/windows.media.core/mediastreamsourceswitchstreamsrequestedeventargs.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestedEventArgs
--api-type: winrt class
----
# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestedEventArgs
## -description
Provides data for the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event.
## -remarks
This object is not instantiated directly, it is created by the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event.
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestedEventArgs
+
+## -description
+Provides data for the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event.
+
+## -remarks
+This object is not instantiated directly, it is created by the [MediaStreamSource.SwitchStreamsRequested](mediastreamsource_switchstreamsrequested.md) event.
+
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/mediastreamsourceswitchstreamsrequestedeventargs_request.md b/windows.media.core/mediastreamsourceswitchstreamsrequestedeventargs_request.md
index c2cfb44853..993cad9859 100644
--- a/windows.media.core/mediastreamsourceswitchstreamsrequestedeventargs_request.md
+++ b/windows.media.core/mediastreamsourceswitchstreamsrequestedeventargs_request.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestedEventArgs.Request
--api-type: winrt property
----
# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestedEventArgs.Request
## -description
Gets the object that represents the request to switch the streams.
## -property-value
Provides information regrading the request to switch the streams.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestedEventArgs.Request
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MediaStreamSourceSwitchStreamsRequestedEventArgs.Request
+
+## -description
+Gets the object that represents the request to switch the streams.
+
+## -property-value
+Provides information regrading the request to switch the streams.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer.md b/windows.media.core/msesourcebuffer.md
index 35ee84058d..32a97092e4 100644
--- a/windows.media.core/msesourcebuffer.md
+++ b/windows.media.core/msesourcebuffer.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.MseSourceBuffer
--api-type: winrt class
----
# Windows.Media.Core.MseSourceBuffer
## -description
Represents a media source extensions (MSE) source buffer.
## -remarks
Get an instance of this class by calling [AddSourceBuffer](msestreamsource_addsourcebuffer.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MseSourceBuffer
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer
+
+## -description
+Represents a media source extensions (MSE) source buffer.
+
+## -remarks
+Get an instance of this class by calling [AddSourceBuffer](msestreamsource_addsourcebuffer.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_abort_1514193616.md b/windows.media.core/msesourcebuffer_abort_1514193616.md
index 1ba62326a8..bd141394e2 100644
--- a/windows.media.core/msesourcebuffer_abort_1514193616.md
+++ b/windows.media.core/msesourcebuffer_abort_1514193616.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.MseSourceBuffer.Abort
--api-type: winrt method
----
# Windows.Media.Core.MseSourceBuffer.Abort
## -description
Aborts media source extensions (MSE) source buffer.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MseSourceBuffer.Abort
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.Abort
+
+## -description
+Aborts media source extensions (MSE) source buffer.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_aborted.md b/windows.media.core/msesourcebuffer_aborted.md
index 24686ca801..69452b1c41 100644
--- a/windows.media.core/msesourcebuffer_aborted.md
+++ b/windows.media.core/msesourcebuffer_aborted.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.MseSourceBuffer.Aborted
--api-type: winrt event
----
# Windows.Media.Core.MseSourceBuffer.Aborted
## -description
Occurs when the [MseSourceBuffer](msesourcebuffer.md) is aborted.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MseSourceBuffer.Aborted
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.Aborted
+
+## -description
+Occurs when the [MseSourceBuffer](msesourcebuffer.md) is aborted.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_appendbuffer_1376449415.md b/windows.media.core/msesourcebuffer_appendbuffer_1376449415.md
index 5e803930f3..6b4d1c81ea 100644
--- a/windows.media.core/msesourcebuffer_appendbuffer_1376449415.md
+++ b/windows.media.core/msesourcebuffer_appendbuffer_1376449415.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Core.MseSourceBuffer.AppendBuffer(Windows.Storage.Streams.IBuffer)
--api-type: winrt method
----
# Windows.Media.Core.MseSourceBuffer.AppendBuffer
## -description
Appends a buffer to the [MseSourceBuffer](msesourcebuffer.md) object.
## -parameters
### -param buffer
The buffer to append.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MseSourceBuffer.AppendBuffer(Windows.Storage.Streams.IBuffer)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.AppendBuffer
+
+## -description
+Appends a buffer to the [MseSourceBuffer](msesourcebuffer.md) object.
+
+## -parameters
+### -param buffer
+The buffer to append.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_appendstream_1212292824.md b/windows.media.core/msesourcebuffer_appendstream_1212292824.md
index 19697a2ff3..46c663cf0f 100644
--- a/windows.media.core/msesourcebuffer_appendstream_1212292824.md
+++ b/windows.media.core/msesourcebuffer_appendstream_1212292824.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Core.MseSourceBuffer.AppendStream(Windows.Storage.Streams.IInputStream,System.UInt64)
--api-type: winrt method
----
# Windows.Media.Core.MseSourceBuffer.AppendStream
## -description
Appends a stream to the [MseSourceBuffer](msesourcebuffer.md) object.
## -parameters
### -param stream
The stream to append.
### -param maxSize
The maximum size of the stream.
## -remarks
## -examples
## -see-also
[AppendStream(IInputStream)](msesourcebuffer_appendstream_1948581086.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MseSourceBuffer.AppendStream(Windows.Storage.Streams.IInputStream,System.UInt64)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.AppendStream
+
+## -description
+Appends a stream to the [MseSourceBuffer](msesourcebuffer.md) object.
+
+## -parameters
+### -param stream
+The stream to append.
+
+### -param maxSize
+The maximum size of the stream.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[AppendStream(IInputStream)](msesourcebuffer_appendstream_1948581086.md)
\ No newline at end of file
diff --git a/windows.media.core/msesourcebuffer_appendstream_1948581086.md b/windows.media.core/msesourcebuffer_appendstream_1948581086.md
index 2c35d52de3..ecf591ca59 100644
--- a/windows.media.core/msesourcebuffer_appendstream_1948581086.md
+++ b/windows.media.core/msesourcebuffer_appendstream_1948581086.md
@@ -1,3 +1,24 @@
----
-api-id: M:Windows.Media.Core.MseSourceBuffer.AppendStream(Windows.Storage.Streams.IInputStream)
--api-type: winrt method
----
# Windows.Media.Core.MseSourceBuffer.AppendStream
## -description
Appends a stream to the [MseSourceBuffer](msesourcebuffer.md) object.
## -parameters
### -param stream
The stream to append.
## -remarks
## -examples
## -see-also
[AppendStream(IInputStream, UInt64)](msesourcebuffer_appendstream_1212292824.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MseSourceBuffer.AppendStream(Windows.Storage.Streams.IInputStream)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.AppendStream
+
+## -description
+Appends a stream to the [MseSourceBuffer](msesourcebuffer.md) object.
+
+## -parameters
+### -param stream
+The stream to append.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[AppendStream(IInputStream, UInt64)](msesourcebuffer_appendstream_1212292824.md)
\ No newline at end of file
diff --git a/windows.media.core/msesourcebuffer_appendwindowend.md b/windows.media.core/msesourcebuffer_appendwindowend.md
index b24beec3fd..8878304215 100644
--- a/windows.media.core/msesourcebuffer_appendwindowend.md
+++ b/windows.media.core/msesourcebuffer_appendwindowend.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseSourceBuffer.AppendWindowEnd
--api-type: winrt property
----
# Windows.Media.Core.MseSourceBuffer.AppendWindowEnd
## -description
Gets and sets the append-window-end interval.
## -property-value
The interval value.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseSourceBuffer.AppendWindowEnd
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.AppendWindowEnd
+
+## -description
+Gets and sets the append-window-end interval.
+
+## -property-value
+The interval value.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_appendwindowstart.md b/windows.media.core/msesourcebuffer_appendwindowstart.md
index 1458134532..d0069bc748 100644
--- a/windows.media.core/msesourcebuffer_appendwindowstart.md
+++ b/windows.media.core/msesourcebuffer_appendwindowstart.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseSourceBuffer.AppendWindowStart
--api-type: winrt property
----
# Windows.Media.Core.MseSourceBuffer.AppendWindowStart
## -description
Gets and sets the append-window-start interval.
## -property-value
The interval value.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseSourceBuffer.AppendWindowStart
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.AppendWindowStart
+
+## -description
+Gets and sets the append-window-start interval.
+
+## -property-value
+The interval value.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_buffered.md b/windows.media.core/msesourcebuffer_buffered.md
index f73307b4d2..fbd5130d18 100644
--- a/windows.media.core/msesourcebuffer_buffered.md
+++ b/windows.media.core/msesourcebuffer_buffered.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseSourceBuffer.Buffered
--api-type: winrt property
----
# Windows.Media.Core.MseSourceBuffer.Buffered
## -description
Gets how the [MseSourceBuffer](msesourcebuffer.md) object is buffered.
## -property-value
The buffered value in terms of a [MseTimeRange](msetimerange.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseSourceBuffer.Buffered
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.Buffered
+
+## -description
+Gets how the [MseSourceBuffer](msesourcebuffer.md) object is buffered.
+
+## -property-value
+The buffered value in terms of a [MseTimeRange](msetimerange.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_erroroccurred.md b/windows.media.core/msesourcebuffer_erroroccurred.md
index 0de7ecb083..d81d5da204 100644
--- a/windows.media.core/msesourcebuffer_erroroccurred.md
+++ b/windows.media.core/msesourcebuffer_erroroccurred.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.MseSourceBuffer.ErrorOccurred
--api-type: winrt event
----
# Windows.Media.Core.MseSourceBuffer.ErrorOccurred
## -description
Occurs when the [MseSourceBuffer](msesourcebuffer.md) has an error.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MseSourceBuffer.ErrorOccurred
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.ErrorOccurred
+
+## -description
+Occurs when the [MseSourceBuffer](msesourcebuffer.md) has an error.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_isupdating.md b/windows.media.core/msesourcebuffer_isupdating.md
index ab1f497ec6..aaa7d0ab54 100644
--- a/windows.media.core/msesourcebuffer_isupdating.md
+++ b/windows.media.core/msesourcebuffer_isupdating.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseSourceBuffer.IsUpdating
--api-type: winrt property
----
# Windows.Media.Core.MseSourceBuffer.IsUpdating
## -description
Gets a value indicating whether the buffer is updating.
## -property-value
True if the buffer is updating; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseSourceBuffer.IsUpdating
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.IsUpdating
+
+## -description
+Gets a value indicating whether the buffer is updating.
+
+## -property-value
+True if the buffer is updating; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_mode.md b/windows.media.core/msesourcebuffer_mode.md
index cfbb1566f6..182370e87c 100644
--- a/windows.media.core/msesourcebuffer_mode.md
+++ b/windows.media.core/msesourcebuffer_mode.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseSourceBuffer.Mode
--api-type: winrt property
----
# Windows.Media.Core.MseSourceBuffer.Mode
## -description
Gets and sets how the [MseSourceBuffer](msesourcebuffer.md) object appends a buffer.
## -property-value
A [MseAppendMode](mseappendmode.md)-typed value that specifies how [MseSourceBuffer](msesourcebuffer.md) appends a buffer.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseSourceBuffer.Mode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.Mode
+
+## -description
+Gets and sets how the [MseSourceBuffer](msesourcebuffer.md) object appends a buffer.
+
+## -property-value
+A [MseAppendMode](mseappendmode.md)-typed value that specifies how [MseSourceBuffer](msesourcebuffer.md) appends a buffer.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_remove_793520635.md b/windows.media.core/msesourcebuffer_remove_793520635.md
index abbf55a6cb..2113883237 100644
--- a/windows.media.core/msesourcebuffer_remove_793520635.md
+++ b/windows.media.core/msesourcebuffer_remove_793520635.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Core.MseSourceBuffer.Remove(Windows.Foundation.TimeSpan,Windows.Foundation.IReference{Windows.Foundation.TimeSpan})
--api-type: winrt method
----
# Windows.Media.Core.MseSourceBuffer.Remove
## -description
Removes media for the specified time range.
## -parameters
### -param start
The start of the time range to remove.
### -param end
The end of the time range to remove.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MseSourceBuffer.Remove(Windows.Foundation.TimeSpan,Windows.Foundation.IReference{Windows.Foundation.TimeSpan})
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.Remove
+
+## -description
+Removes media for the specified time range.
+
+## -parameters
+### -param start
+The start of the time range to remove.
+
+### -param end
+The end of the time range to remove.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_timestampoffset.md b/windows.media.core/msesourcebuffer_timestampoffset.md
index ed3a449707..6652b725a6 100644
--- a/windows.media.core/msesourcebuffer_timestampoffset.md
+++ b/windows.media.core/msesourcebuffer_timestampoffset.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseSourceBuffer.TimestampOffset
--api-type: winrt property
----
# Windows.Media.Core.MseSourceBuffer.TimestampOffset
## -description
Gets and sets the timestamp offset into the [MseSourceBuffer](msesourcebuffer.md) object.
## -property-value
The timestamp offset value.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseSourceBuffer.TimestampOffset
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.TimestampOffset
+
+## -description
+Gets and sets the timestamp offset into the [MseSourceBuffer](msesourcebuffer.md) object.
+
+## -property-value
+The timestamp offset value.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_updated.md b/windows.media.core/msesourcebuffer_updated.md
index 4e5f7ea3d0..384f0e3843 100644
--- a/windows.media.core/msesourcebuffer_updated.md
+++ b/windows.media.core/msesourcebuffer_updated.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.MseSourceBuffer.Updated
--api-type: winrt event
----
# Windows.Media.Core.MseSourceBuffer.Updated
## -description
Occurs when the [MseSourceBuffer](msesourcebuffer.md) is updated.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MseSourceBuffer.Updated
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.Updated
+
+## -description
+Occurs when the [MseSourceBuffer](msesourcebuffer.md) is updated.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_updateended.md b/windows.media.core/msesourcebuffer_updateended.md
index cd24fe3817..4026c7d64c 100644
--- a/windows.media.core/msesourcebuffer_updateended.md
+++ b/windows.media.core/msesourcebuffer_updateended.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.MseSourceBuffer.UpdateEnded
--api-type: winrt event
----
# Windows.Media.Core.MseSourceBuffer.UpdateEnded
## -description
Occurs when the [MseSourceBuffer](msesourcebuffer.md) update has ended.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MseSourceBuffer.UpdateEnded
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.UpdateEnded
+
+## -description
+Occurs when the [MseSourceBuffer](msesourcebuffer.md) update has ended.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebuffer_updatestarting.md b/windows.media.core/msesourcebuffer_updatestarting.md
index b67cd67e7e..8e60e66921 100644
--- a/windows.media.core/msesourcebuffer_updatestarting.md
+++ b/windows.media.core/msesourcebuffer_updatestarting.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.MseSourceBuffer.UpdateStarting
--api-type: winrt event
----
# Windows.Media.Core.MseSourceBuffer.UpdateStarting
## -description
Occurs when the [MseSourceBuffer](msesourcebuffer.md) update is starting.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MseSourceBuffer.UpdateStarting
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MseSourceBuffer.UpdateStarting
+
+## -description
+Occurs when the [MseSourceBuffer](msesourcebuffer.md) update is starting.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebufferlist.md b/windows.media.core/msesourcebufferlist.md
index e5deb30fa0..38d9d312a1 100644
--- a/windows.media.core/msesourcebufferlist.md
+++ b/windows.media.core/msesourcebufferlist.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.MseSourceBufferList
--api-type: winrt class
----
# Windows.Media.Core.MseSourceBufferList
## -description
Represents a list of media source extensions (MSE) source buffers.
## -remarks
Get an instance of this class by accessing the [ActiveSourceBuffers](msestreamsource_activesourcebuffers.md) or [SourceBuffers](msestreamsource_sourcebuffers.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MseSourceBufferList
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MseSourceBufferList
+
+## -description
+Represents a list of media source extensions (MSE) source buffers.
+
+## -remarks
+Get an instance of this class by accessing the [ActiveSourceBuffers](msestreamsource_activesourcebuffers.md) or [SourceBuffers](msestreamsource_sourcebuffers.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebufferlist_buffers.md b/windows.media.core/msesourcebufferlist_buffers.md
index 08011b676f..bfb7fe0f72 100644
--- a/windows.media.core/msesourcebufferlist_buffers.md
+++ b/windows.media.core/msesourcebufferlist_buffers.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseSourceBufferList.Buffers
--api-type: winrt property
----
# Windows.Media.Core.MseSourceBufferList.Buffers
## -description
Gets the list of [MseSourceBuffer](msesourcebuffer.md) objects.
## -property-value
The list of [MseSourceBuffer](msesourcebuffer.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseSourceBufferList.Buffers
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseSourceBufferList.Buffers
+
+## -description
+Gets the list of [MseSourceBuffer](msesourcebuffer.md) objects.
+
+## -property-value
+The list of [MseSourceBuffer](msesourcebuffer.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebufferlist_sourcebufferadded.md b/windows.media.core/msesourcebufferlist_sourcebufferadded.md
index df9db86ad1..17a2432629 100644
--- a/windows.media.core/msesourcebufferlist_sourcebufferadded.md
+++ b/windows.media.core/msesourcebufferlist_sourcebufferadded.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.MseSourceBufferList.SourceBufferAdded
--api-type: winrt event
----
# Windows.Media.Core.MseSourceBufferList.SourceBufferAdded
## -description
Occurs when a [MseSourceBuffer](msesourcebuffer.md) object is added.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MseSourceBufferList.SourceBufferAdded
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MseSourceBufferList.SourceBufferAdded
+
+## -description
+Occurs when a [MseSourceBuffer](msesourcebuffer.md) object is added.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msesourcebufferlist_sourcebufferremoved.md b/windows.media.core/msesourcebufferlist_sourcebufferremoved.md
index a4843c822c..a383f276d6 100644
--- a/windows.media.core/msesourcebufferlist_sourcebufferremoved.md
+++ b/windows.media.core/msesourcebufferlist_sourcebufferremoved.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.MseSourceBufferList.SourceBufferRemoved
--api-type: winrt event
----
# Windows.Media.Core.MseSourceBufferList.SourceBufferRemoved
## -description
Occurs when a [MseSourceBuffer](msesourcebuffer.md) object is removed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MseSourceBufferList.SourceBufferRemoved
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MseSourceBufferList.SourceBufferRemoved
+
+## -description
+Occurs when a [MseSourceBuffer](msesourcebuffer.md) object is removed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource.md b/windows.media.core/msestreamsource.md
index 69050cd13d..b1ba8e46d7 100644
--- a/windows.media.core/msestreamsource.md
+++ b/windows.media.core/msestreamsource.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.Core.MseStreamSource
--api-type: winrt class
----
# Windows.Media.Core.MseStreamSource
## -description
Represents a media source extensions (MSE) stream source.
## -remarks
## -examples
## -see-also
[IMediaSource](imediasource.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.MseStreamSource
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.MseStreamSource
+
+## -description
+Represents a media source extensions (MSE) stream source.
+
+## -remarks
+
+
+## -examples
+
+## -see-also
+[IMediaSource](imediasource.md)
\ No newline at end of file
diff --git a/windows.media.core/msestreamsource_activesourcebuffers.md b/windows.media.core/msestreamsource_activesourcebuffers.md
index c5ac678302..07c083b3d9 100644
--- a/windows.media.core/msestreamsource_activesourcebuffers.md
+++ b/windows.media.core/msestreamsource_activesourcebuffers.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseStreamSource.ActiveSourceBuffers
--api-type: winrt property
----
# Windows.Media.Core.MseStreamSource.ActiveSourceBuffers
## -description
Gets the list of media source extensions (MSE) source buffers that are active on the stream source.
## -property-value
The list of MSE source buffers that are active.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseStreamSource.ActiveSourceBuffers
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.ActiveSourceBuffers
+
+## -description
+Gets the list of media source extensions (MSE) source buffers that are active on the stream source.
+
+## -property-value
+The list of MSE source buffers that are active.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_addsourcebuffer_362600906.md b/windows.media.core/msestreamsource_addsourcebuffer_362600906.md
index acac030e4d..5891961b9f 100644
--- a/windows.media.core/msestreamsource_addsourcebuffer_362600906.md
+++ b/windows.media.core/msestreamsource_addsourcebuffer_362600906.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Core.MseStreamSource.AddSourceBuffer(System.String)
--api-type: winrt method
----
# Windows.Media.Core.MseStreamSource.AddSourceBuffer
## -description
Adds a source buffer to the stream source.
## -parameters
### -param mimeType
A string that describes the source buffer's MIME type.
## -returns
The [MseSourceBuffer](msesourcebuffer.md) object for the source buffer added.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MseStreamSource.AddSourceBuffer(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.AddSourceBuffer
+
+## -description
+Adds a source buffer to the stream source.
+
+## -parameters
+### -param mimeType
+A string that describes the source buffer's MIME type.
+
+## -returns
+The [MseSourceBuffer](msesourcebuffer.md) object for the source buffer added.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_closed.md b/windows.media.core/msestreamsource_closed.md
index 4aabdec369..1292c04589 100644
--- a/windows.media.core/msestreamsource_closed.md
+++ b/windows.media.core/msestreamsource_closed.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.MseStreamSource.Closed
--api-type: winrt event
----
# Windows.Media.Core.MseStreamSource.Closed
## -description
Occurs when the [MseStreamSource](msestreamsource.md) is closed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MseStreamSource.Closed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.Closed
+
+## -description
+Occurs when the [MseStreamSource](msestreamsource.md) is closed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_duration.md b/windows.media.core/msestreamsource_duration.md
index ff1aa92dc1..3ee9e2241a 100644
--- a/windows.media.core/msestreamsource_duration.md
+++ b/windows.media.core/msestreamsource_duration.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseStreamSource.Duration
--api-type: winrt property
----
# Windows.Media.Core.MseStreamSource.Duration
## -description
Gets and sets the duration of the stream source.
## -property-value
The duration of the stream source.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseStreamSource.Duration
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.Duration
+
+## -description
+Gets and sets the duration of the stream source.
+
+## -property-value
+The duration of the stream source.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_ended.md b/windows.media.core/msestreamsource_ended.md
index 5ce69f26fb..361eee4afa 100644
--- a/windows.media.core/msestreamsource_ended.md
+++ b/windows.media.core/msestreamsource_ended.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.MseStreamSource.Ended
--api-type: winrt event
----
# Windows.Media.Core.MseStreamSource.Ended
## -description
Occurs when the [MseStreamSource](msestreamsource.md) is ended.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MseStreamSource.Ended
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.Ended
+
+## -description
+Occurs when the [MseStreamSource](msestreamsource.md) is ended.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_endofstream_1698240389.md b/windows.media.core/msestreamsource_endofstream_1698240389.md
index 56dfe5dd5f..e2ac1dac59 100644
--- a/windows.media.core/msestreamsource_endofstream_1698240389.md
+++ b/windows.media.core/msestreamsource_endofstream_1698240389.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Core.MseStreamSource.EndOfStream(Windows.Media.Core.MseEndOfStreamStatus)
--api-type: winrt method
----
# Windows.Media.Core.MseStreamSource.EndOfStream
## -description
Specifies the status at the end of stream.
## -parameters
### -param status
A [MseEndOfStreamStatus](mseendofstreamstatus.md)-typed value that specifies the status at the end of stream.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MseStreamSource.EndOfStream(Windows.Media.Core.MseEndOfStreamStatus)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.EndOfStream
+
+## -description
+Specifies the status at the end of stream.
+
+## -parameters
+### -param status
+A [MseEndOfStreamStatus](mseendofstreamstatus.md)-typed value that specifies the status at the end of stream.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_iscontenttypesupported_639585181.md b/windows.media.core/msestreamsource_iscontenttypesupported_639585181.md
index 2182e8d3ad..9e99506570 100644
--- a/windows.media.core/msestreamsource_iscontenttypesupported_639585181.md
+++ b/windows.media.core/msestreamsource_iscontenttypesupported_639585181.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Core.MseStreamSource.IsContentTypeSupported(System.String)
--api-type: winrt method
----
# Windows.Media.Core.MseStreamSource.IsContentTypeSupported
## -description
Specifies whether a content type is supported.
## -parameters
### -param contentType
A string that describes the content type.
## -returns
**true** if the content type specified by *contentType* is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MseStreamSource.IsContentTypeSupported(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.IsContentTypeSupported
+
+## -description
+Specifies whether a content type is supported.
+
+## -parameters
+### -param contentType
+A string that describes the content type.
+
+## -returns
+**true** if the content type specified by *contentType* is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_msestreamsource_1221375020.md b/windows.media.core/msestreamsource_msestreamsource_1221375020.md
index ed043326c0..63458f0863 100644
--- a/windows.media.core/msestreamsource_msestreamsource_1221375020.md
+++ b/windows.media.core/msestreamsource_msestreamsource_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.MseStreamSource.#ctor
--api-type: winrt method
----
# Windows.Media.Core.MseStreamSource.MseStreamSource
## -description
Instantiates a new instance of an uninitialized [MseStreamSource](msestreamsource.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MseStreamSource.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.MseStreamSource
+
+## -description
+Instantiates a new instance of an uninitialized [MseStreamSource](msestreamsource.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_opened.md b/windows.media.core/msestreamsource_opened.md
index 1c4fdafacf..999eee35d4 100644
--- a/windows.media.core/msestreamsource_opened.md
+++ b/windows.media.core/msestreamsource_opened.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.MseStreamSource.Opened
--api-type: winrt event
----
# Windows.Media.Core.MseStreamSource.Opened
## -description
Occurs when the [MseStreamSource](msestreamsource.md) is opened.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.MseStreamSource.Opened
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.Opened
+
+## -description
+Occurs when the [MseStreamSource](msestreamsource.md) is opened.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_readystate.md b/windows.media.core/msestreamsource_readystate.md
index 9a80c34c84..72544d312e 100644
--- a/windows.media.core/msestreamsource_readystate.md
+++ b/windows.media.core/msestreamsource_readystate.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseStreamSource.ReadyState
--api-type: winrt property
----
# Windows.Media.Core.MseStreamSource.ReadyState
## -description
Gets a value that specifies the ready state of the [MseStreamSource](msestreamsource.md).
## -property-value
A [MseReadyState](msereadystate.md)-typed value that specifies the ready state of the [MseStreamSource](msestreamsource.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseStreamSource.ReadyState
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.ReadyState
+
+## -description
+Gets a value that specifies the ready state of the [MseStreamSource](msestreamsource.md).
+
+## -property-value
+A [MseReadyState](msereadystate.md)-typed value that specifies the ready state of the [MseStreamSource](msestreamsource.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_removesourcebuffer_212338239.md b/windows.media.core/msestreamsource_removesourcebuffer_212338239.md
index 819a978cd8..109368a39a 100644
--- a/windows.media.core/msestreamsource_removesourcebuffer_212338239.md
+++ b/windows.media.core/msestreamsource_removesourcebuffer_212338239.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Core.MseStreamSource.RemoveSourceBuffer(Windows.Media.Core.MseSourceBuffer)
--api-type: winrt method
----
# Windows.Media.Core.MseStreamSource.RemoveSourceBuffer
## -description
Removes a source buffer from the stream source.
## -parameters
### -param buffer
The [MseSourceBuffer](msesourcebuffer.md) object for the source buffer removed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.MseStreamSource.RemoveSourceBuffer(Windows.Media.Core.MseSourceBuffer)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.RemoveSourceBuffer
+
+## -description
+Removes a source buffer from the stream source.
+
+## -parameters
+### -param buffer
+The [MseSourceBuffer](msesourcebuffer.md) object for the source buffer removed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/msestreamsource_sourcebuffers.md b/windows.media.core/msestreamsource_sourcebuffers.md
index c08f119c2e..8ba92c16f4 100644
--- a/windows.media.core/msestreamsource_sourcebuffers.md
+++ b/windows.media.core/msestreamsource_sourcebuffers.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.MseStreamSource.SourceBuffers
--api-type: winrt property
----
# Windows.Media.Core.MseStreamSource.SourceBuffers
## -description
Gets the list of media source extensions (MSE) source buffers on the stream source.
## -property-value
The list of MSE source buffers.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.MseStreamSource.SourceBuffers
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.MseStreamSource.SourceBuffers
+
+## -description
+Gets the list of media source extensions (MSE) source buffers on the stream source.
+
+## -property-value
+The list of MSE source buffers.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffect.md b/windows.media.core/sceneanalysiseffect.md
index 5a4fcffc23..7df1e86c31 100644
--- a/windows.media.core/sceneanalysiseffect.md
+++ b/windows.media.core/sceneanalysiseffect.md
@@ -1,3 +1,27 @@
----
-api-id: T:Windows.Media.Core.SceneAnalysisEffect
--api-type: winrt class
----
# Windows.Media.Core.SceneAnalysisEffect
## -description
Represents an effect that analyzes video frames to determine if any of the supported variable photo sequence capture techniques may produce a higher-quality captured image.
## -remarks
Get an instance of this class by passing a [SceneAnalysisEffectDefinition](sceneanalysiseffectdefinition.md) object into [MediaCapture.AddVideoEffectAsync](../windows.media.capture/mediacapture_addvideoeffectasync.md).
Just like other effects, the scene analyzer effect is added to the capture pipeline by calling [AddEffectAsync](../windows.media.capture/mediacapture_addeffectasync.md). After capture is started, the [SceneAnalyzed](sceneanalysiseffect_sceneanalyzed.md) event is raised. In the handler for this event, you can get access to the output object that indicates the likelihood that a particular technique will improve the captured image. The output object also provides a set of [FrameController](highdynamicrangeoutput_framecontrollers.md) objects with recommended settings that can be assigned directly to the [VariablePhotoSequenceController.DesiredFrameControllers](../windows.media.devices.core/variablephotosequencecontroller_desiredframecontrollers.md) collection to enable the capture technique.
In the current release, the only analyzer supported is the High Dynamic Range (HDR) analyzer.
For how-to guidance on using the **SceneAnalysisEffect**, see [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture).
## -examples
## -see-also
[IMediaExtension](../windows.media/imediaextension.md), [VariablePhotoSequenceController](../windows.media.devices.core/variablephotosequencecontroller.md), [MediaCapture.AddEffectAsync](../windows.media.capture/mediacapture_addeffectasync.md), [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.SceneAnalysisEffect
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffect
+
+## -description
+Represents an effect that analyzes video frames to determine if any of the supported variable photo sequence capture techniques may produce a higher-quality captured image.
+
+## -remarks
+Get an instance of this class by passing a [SceneAnalysisEffectDefinition](sceneanalysiseffectdefinition.md) object into [MediaCapture.AddVideoEffectAsync](../windows.media.capture/mediacapture_addvideoeffectasync.md).
+
+Just like other effects, the scene analyzer effect is added to the capture pipeline by calling [AddEffectAsync](../windows.media.capture/mediacapture_addeffectasync.md). After capture is started, the [SceneAnalyzed](sceneanalysiseffect_sceneanalyzed.md) event is raised. In the handler for this event, you can get access to the output object that indicates the likelihood that a particular technique will improve the captured image. The output object also provides a set of [FrameController](highdynamicrangeoutput_framecontrollers.md) objects with recommended settings that can be assigned directly to the [VariablePhotoSequenceController.DesiredFrameControllers](../windows.media.devices.core/variablephotosequencecontroller_desiredframecontrollers.md) collection to enable the capture technique.
+
+In the current release, the only analyzer supported is the High Dynamic Range (HDR) analyzer.
+
+For how-to guidance on using the **SceneAnalysisEffect**, see [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture).
+
+## -examples
+
+## -see-also
+[IMediaExtension](../windows.media/imediaextension.md), [VariablePhotoSequenceController](../windows.media.devices.core/variablephotosequencecontroller.md), [MediaCapture.AddEffectAsync](../windows.media.capture/mediacapture_addeffectasync.md), [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture)
\ No newline at end of file
diff --git a/windows.media.core/sceneanalysiseffect_desiredanalysisinterval.md b/windows.media.core/sceneanalysiseffect_desiredanalysisinterval.md
index da93204fea..d20d3a2a1e 100644
--- a/windows.media.core/sceneanalysiseffect_desiredanalysisinterval.md
+++ b/windows.media.core/sceneanalysiseffect_desiredanalysisinterval.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffect.DesiredAnalysisInterval
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffect.DesiredAnalysisInterval
## -description
Gets or sets the duration of the time window during which video frames are analyzed.
## -property-value
The duration of the time window during which video frames are analyzed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffect.DesiredAnalysisInterval
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffect.DesiredAnalysisInterval
+
+## -description
+Gets or sets the duration of the time window during which video frames are analyzed.
+
+## -property-value
+The duration of the time window during which video frames are analyzed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffect_highdynamicrangeanalyzer.md b/windows.media.core/sceneanalysiseffect_highdynamicrangeanalyzer.md
index f51771e6f5..d14ee05cce 100644
--- a/windows.media.core/sceneanalysiseffect_highdynamicrangeanalyzer.md
+++ b/windows.media.core/sceneanalysiseffect_highdynamicrangeanalyzer.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffect.HighDynamicRangeAnalyzer
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffect.HighDynamicRangeAnalyzer
## -description
Gets or sets a [HighDynamicRangeControl](highdynamicrangecontrol.md) object that is used to enable or disable High Dynamic Range (HDR) analysis.
## -property-value
A [HighDynamicRangeControl](highdynamicrangecontrol.md) object that is used to enable or disable High Dynamic Range (HDR) analysis.
## -remarks
## -examples
## -see-also
[HighDynamicRangeControl](highdynamicrangecontrol.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffect.HighDynamicRangeAnalyzer
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffect.HighDynamicRangeAnalyzer
+
+## -description
+Gets or sets a [HighDynamicRangeControl](highdynamicrangecontrol.md) object that is used to enable or disable High Dynamic Range (HDR) analysis.
+
+## -property-value
+A [HighDynamicRangeControl](highdynamicrangecontrol.md) object that is used to enable or disable High Dynamic Range (HDR) analysis.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[HighDynamicRangeControl](highdynamicrangecontrol.md)
\ No newline at end of file
diff --git a/windows.media.core/sceneanalysiseffect_sceneanalyzed.md b/windows.media.core/sceneanalysiseffect_sceneanalyzed.md
index a237e3bdab..a23b95c0e3 100644
--- a/windows.media.core/sceneanalysiseffect_sceneanalyzed.md
+++ b/windows.media.core/sceneanalysiseffect_sceneanalyzed.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.SceneAnalysisEffect.SceneAnalyzed
--api-type: winrt event
----
# Windows.Media.Core.SceneAnalysisEffect.SceneAnalyzed
## -description
Raised when the scene analysis is complete.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.SceneAnalysisEffect.SceneAnalyzed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffect.SceneAnalyzed
+
+## -description
+Raised when the scene analysis is complete.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffect_setproperties_518979560.md b/windows.media.core/sceneanalysiseffect_setproperties_518979560.md
index 4ba1e32682..7ec7ec3e96 100644
--- a/windows.media.core/sceneanalysiseffect_setproperties_518979560.md
+++ b/windows.media.core/sceneanalysiseffect_setproperties_518979560.md
@@ -1,3 +1,24 @@
----
-api-id: M:Windows.Media.Core.SceneAnalysisEffect.SetProperties(Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.Core.SceneAnalysisEffect.SetProperties
## -description
Sets properties on the [IMediaExtension](../windows.media/imediaextension.md).
## -parameters
### -param configuration
The property set.
## -remarks
This method is inherited from the [IMediaExtension](../windows.media/imediaextension.md) interface and is not intended to be used from your code. Instead, set the properties of the [SceneAnalysisEffect](sceneanalysiseffect.md) directly.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.SceneAnalysisEffect.SetProperties(Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffect.SetProperties
+
+## -description
+Sets properties on the [IMediaExtension](../windows.media/imediaextension.md).
+
+## -parameters
+### -param configuration
+The property set.
+
+## -remarks
+This method is inherited from the [IMediaExtension](../windows.media/imediaextension.md) interface and is not intended to be used from your code. Instead, set the properties of the [SceneAnalysisEffect](sceneanalysiseffect.md) directly.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectdefinition.md b/windows.media.core/sceneanalysiseffectdefinition.md
index 7b0ee0afe9..64a7d20182 100644
--- a/windows.media.core/sceneanalysiseffectdefinition.md
+++ b/windows.media.core/sceneanalysiseffectdefinition.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.SceneAnalysisEffectDefinition
--api-type: winrt class
----
# Windows.Media.Core.SceneAnalysisEffectDefinition
## -description
Represents the definition of a scene analysis video effect.
## -remarks
Get an instance of the [SceneAnalysisEffect](sceneanalysiseffect.md) class by passing a **SceneAnalysisEffectDefinition** object into [MediaCapture.AddVideoEffectAsync](../windows.media.capture/mediacapture_addvideoeffectasync.md).
For how-to guidance on using the **SceneAnalysisEffect**, see [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture).
## -examples
## -see-also
[IVideoEffectDefinition](../windows.media.effects/ivideoeffectdefinition.md), [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.SceneAnalysisEffectDefinition
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectDefinition
+
+## -description
+Represents the definition of a scene analysis video effect.
+
+## -remarks
+Get an instance of the [SceneAnalysisEffect](sceneanalysiseffect.md) class by passing a **SceneAnalysisEffectDefinition** object into [MediaCapture.AddVideoEffectAsync](../windows.media.capture/mediacapture_addvideoeffectasync.md).
+
+For how-to guidance on using the **SceneAnalysisEffect**, see [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture).
+
+## -examples
+
+## -see-also
+[IVideoEffectDefinition](../windows.media.effects/ivideoeffectdefinition.md), [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture)
\ No newline at end of file
diff --git a/windows.media.core/sceneanalysiseffectdefinition_activatableclassid.md b/windows.media.core/sceneanalysiseffectdefinition_activatableclassid.md
index 7a2ab7589d..d4f24549b0 100644
--- a/windows.media.core/sceneanalysiseffectdefinition_activatableclassid.md
+++ b/windows.media.core/sceneanalysiseffectdefinition_activatableclassid.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectDefinition.ActivatableClassId
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectDefinition.ActivatableClassId
## -description
Gets a string containing the activatable class ID of the scene analysis effect definition.
## -property-value
The activatable class ID of the scene analysis effect definition.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectDefinition.ActivatableClassId
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectDefinition.ActivatableClassId
+
+## -description
+Gets a string containing the activatable class ID of the scene analysis effect definition.
+
+## -property-value
+The activatable class ID of the scene analysis effect definition.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectdefinition_properties.md b/windows.media.core/sceneanalysiseffectdefinition_properties.md
index 833fbf9993..a5d33d30d1 100644
--- a/windows.media.core/sceneanalysiseffectdefinition_properties.md
+++ b/windows.media.core/sceneanalysiseffectdefinition_properties.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectDefinition.Properties
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectDefinition.Properties
## -description
Gets the set of properties for configuring the [SceneAnalysisEffectDefinition](sceneanalysiseffectdefinition.md) object.
## -property-value
The set of properties for configuring the [SceneAnalysisEffectDefinition](sceneanalysiseffectdefinition.md) object.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectDefinition.Properties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectDefinition.Properties
+
+## -description
+Gets the set of properties for configuring the [SceneAnalysisEffectDefinition](sceneanalysiseffectdefinition.md) object.
+
+## -property-value
+The set of properties for configuring the [SceneAnalysisEffectDefinition](sceneanalysiseffectdefinition.md) object.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectdefinition_sceneanalysiseffectdefinition_1221375020.md b/windows.media.core/sceneanalysiseffectdefinition_sceneanalysiseffectdefinition_1221375020.md
index 1b6492ca67..d1d7aac3f6 100644
--- a/windows.media.core/sceneanalysiseffectdefinition_sceneanalysiseffectdefinition_1221375020.md
+++ b/windows.media.core/sceneanalysiseffectdefinition_sceneanalysiseffectdefinition_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.SceneAnalysisEffectDefinition.#ctor
--api-type: winrt method
----
# Windows.Media.Core.SceneAnalysisEffectDefinition.SceneAnalysisEffectDefinition
## -description
Initializes a new instance of the [SceneAnalysisEffectDefinition](sceneanalysiseffectdefinition.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.SceneAnalysisEffectDefinition.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectDefinition.SceneAnalysisEffectDefinition
+
+## -description
+Initializes a new instance of the [SceneAnalysisEffectDefinition](sceneanalysiseffectdefinition.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectframe.md b/windows.media.core/sceneanalysiseffectframe.md
index 591867c6ef..8ca10fdbcd 100644
--- a/windows.media.core/sceneanalysiseffectframe.md
+++ b/windows.media.core/sceneanalysiseffectframe.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.SceneAnalysisEffectFrame
--api-type: winrt class
----
# Windows.Media.Core.SceneAnalysisEffectFrame
## -description
Represents a video frame that includes the results of the scene analysis operation.
## -remarks
Get an instance of this class by handling the [SceneAnalysisEffect.SceneAnalyzed](sceneanalysiseffect_sceneanalyzed.md) event.
For how-to guidance on using the **SceneAnalysisEffect**, see [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture).
## -examples
## -see-also
[IMediaFrame](../windows.media/imediaframe.md), [IClosable](../windows.foundation/iclosable.md), [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.SceneAnalysisEffectFrame
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame
+
+## -description
+Represents a video frame that includes the results of the scene analysis operation.
+
+## -remarks
+Get an instance of this class by handling the [SceneAnalysisEffect.SceneAnalyzed](sceneanalysiseffect_sceneanalyzed.md) event.
+
+For how-to guidance on using the **SceneAnalysisEffect**, see [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture).
+
+## -examples
+
+## -see-also
+[IMediaFrame](../windows.media/imediaframe.md), [IClosable](../windows.foundation/iclosable.md), [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture)
\ No newline at end of file
diff --git a/windows.media.core/sceneanalysiseffectframe_close_811482585.md b/windows.media.core/sceneanalysiseffectframe_close_811482585.md
index 80eab28e3b..1abbfdf4af 100644
--- a/windows.media.core/sceneanalysiseffectframe_close_811482585.md
+++ b/windows.media.core/sceneanalysiseffectframe_close_811482585.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.SceneAnalysisEffectFrame.Close
--api-type: winrt method
----
# Windows.Media.Core.SceneAnalysisEffectFrame.Close
## -description
Disposes of the object and associated resources.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.SceneAnalysisEffectFrame.Close
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame.Close
+
+## -description
+Disposes of the object and associated resources.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectframe_duration.md b/windows.media.core/sceneanalysiseffectframe_duration.md
index 172d7b23e7..8bfb04a25b 100644
--- a/windows.media.core/sceneanalysiseffectframe_duration.md
+++ b/windows.media.core/sceneanalysiseffectframe_duration.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.Duration
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectFrame.Duration
## -description
Gets or sets the duration of the scene analysis effect frame.
## -property-value
The duration of the scene analysis effect frame.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.Duration
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame.Duration
+
+## -description
+Gets or sets the duration of the scene analysis effect frame.
+
+## -property-value
+The duration of the scene analysis effect frame.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectframe_extendedproperties.md b/windows.media.core/sceneanalysiseffectframe_extendedproperties.md
index 4414ed721c..3616c338b5 100644
--- a/windows.media.core/sceneanalysiseffectframe_extendedproperties.md
+++ b/windows.media.core/sceneanalysiseffectframe_extendedproperties.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.ExtendedProperties
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectFrame.ExtendedProperties
## -description
Gets the extended property set which enables getting and setting properties on the media frame.
## -property-value
The extended properties map.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.ExtendedProperties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame.ExtendedProperties
+
+## -description
+Gets the extended property set which enables getting and setting properties on the media frame.
+
+## -property-value
+The extended properties map.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectframe_framecontrolvalues.md b/windows.media.core/sceneanalysiseffectframe_framecontrolvalues.md
index 671e2950dc..dc80a24d5c 100644
--- a/windows.media.core/sceneanalysiseffectframe_framecontrolvalues.md
+++ b/windows.media.core/sceneanalysiseffectframe_framecontrolvalues.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.FrameControlValues
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectFrame.FrameControlValues
## -description
Gets a [CapturedFrameControlValues](../windows.media.capture/capturedframecontrolvalues.md) object that indicates the capture settings used for the frame.
## -property-value
A [CapturedFrameControlValues](../windows.media.capture/capturedframecontrolvalues.md) object that indicates the capture settings used for the frame.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.FrameControlValues
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame.FrameControlValues
+
+## -description
+Gets a [CapturedFrameControlValues](../windows.media.capture/capturedframecontrolvalues.md) object that indicates the capture settings used for the frame.
+
+## -property-value
+A [CapturedFrameControlValues](../windows.media.capture/capturedframecontrolvalues.md) object that indicates the capture settings used for the frame.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectframe_highdynamicrange.md b/windows.media.core/sceneanalysiseffectframe_highdynamicrange.md
index a40fb30e0b..26b435ca29 100644
--- a/windows.media.core/sceneanalysiseffectframe_highdynamicrange.md
+++ b/windows.media.core/sceneanalysiseffectframe_highdynamicrange.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.HighDynamicRange
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectFrame.HighDynamicRange
## -description
Gets a [HighDynamicRangeOutput](highdynamicrangeoutput.md) object that provides recommended FrameController objects and a value indicating the certainty of the HDR analysis.
## -property-value
A [HighDynamicRangeOutput](highdynamicrangeoutput.md) object that provides the results of the HDR analysis.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.HighDynamicRange
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame.HighDynamicRange
+
+## -description
+Gets a [HighDynamicRangeOutput](highdynamicrangeoutput.md) object that provides recommended FrameController objects and a value indicating the certainty of the HDR analysis.
+
+## -property-value
+A [HighDynamicRangeOutput](highdynamicrangeoutput.md) object that provides the results of the HDR analysis.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectframe_isdiscontinuous.md b/windows.media.core/sceneanalysiseffectframe_isdiscontinuous.md
index 4d70c72089..4db4b3521a 100644
--- a/windows.media.core/sceneanalysiseffectframe_isdiscontinuous.md
+++ b/windows.media.core/sceneanalysiseffectframe_isdiscontinuous.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.IsDiscontinuous
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectFrame.IsDiscontinuous
## -description
Gets or sets a value that indicates whether a video frame is the first frame after a gap in the stream.
## -property-value
True if the video frame is the first frame after a gap in the stream; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.IsDiscontinuous
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame.IsDiscontinuous
+
+## -description
+Gets or sets a value that indicates whether a video frame is the first frame after a gap in the stream.
+
+## -property-value
+True if the video frame is the first frame after a gap in the stream; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectframe_isreadonly.md b/windows.media.core/sceneanalysiseffectframe_isreadonly.md
index 8c57a71477..86f2d5e118 100644
--- a/windows.media.core/sceneanalysiseffectframe_isreadonly.md
+++ b/windows.media.core/sceneanalysiseffectframe_isreadonly.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.IsReadOnly
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectFrame.IsReadOnly
## -description
Gets a value indicating whether the frame is read-only.
## -property-value
True if the frame is read-only; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.IsReadOnly
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame.IsReadOnly
+
+## -description
+Gets a value indicating whether the frame is read-only.
+
+## -property-value
+True if the frame is read-only; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectframe_relativetime.md b/windows.media.core/sceneanalysiseffectframe_relativetime.md
index 894c97b5b1..34320d7eb1 100644
--- a/windows.media.core/sceneanalysiseffectframe_relativetime.md
+++ b/windows.media.core/sceneanalysiseffectframe_relativetime.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.RelativeTime
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectFrame.RelativeTime
## -description
Gets or sets the relative time of the frame within the video stream.
## -property-value
The relative time of the frame within the video stream.
## -remarks
Use [SystemRelativeTime](sceneanalysiseffectframe_systemrelativetime.md) to get a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.RelativeTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame.RelativeTime
+
+## -description
+Gets or sets the relative time of the frame within the video stream.
+
+## -property-value
+The relative time of the frame within the video stream.
+
+## -remarks
+Use [SystemRelativeTime](sceneanalysiseffectframe_systemrelativetime.md) to get a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectframe_systemrelativetime.md b/windows.media.core/sceneanalysiseffectframe_systemrelativetime.md
index ed071fb780..c14cb56529 100644
--- a/windows.media.core/sceneanalysiseffectframe_systemrelativetime.md
+++ b/windows.media.core/sceneanalysiseffectframe_systemrelativetime.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.SystemRelativeTime
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectFrame.SystemRelativeTime
## -description
Gets or sets a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
## -property-value
A timestamp relative to the system.
## -remarks
Use [RelativeTime](sceneanalysiseffectframe_relativetime.md) to get a timestamp that is relative to the video stream.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.SystemRelativeTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame.SystemRelativeTime
+
+## -description
+Gets or sets a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
+
+## -property-value
+A timestamp relative to the system.
+
+## -remarks
+Use [RelativeTime](sceneanalysiseffectframe_relativetime.md) to get a timestamp that is relative to the video stream.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalysiseffectframe_type.md b/windows.media.core/sceneanalysiseffectframe_type.md
index bfc4a448ed..084ff5a8ba 100644
--- a/windows.media.core/sceneanalysiseffectframe_type.md
+++ b/windows.media.core/sceneanalysiseffectframe_type.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.Type
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalysisEffectFrame.Type
## -description
Gets a string indicating the type of data the frame contains.
## -property-value
A string indicating the type of data the frame contains.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalysisEffectFrame.Type
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalysisEffectFrame.Type
+
+## -description
+Gets a string indicating the type of data the frame contains.
+
+## -property-value
+A string indicating the type of data the frame contains.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/sceneanalyzedeventargs.md b/windows.media.core/sceneanalyzedeventargs.md
index d5923cb9e8..f037fc051a 100644
--- a/windows.media.core/sceneanalyzedeventargs.md
+++ b/windows.media.core/sceneanalyzedeventargs.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.SceneAnalyzedEventArgs
--api-type: winrt class
----
# Windows.Media.Core.SceneAnalyzedEventArgs
## -description
Provides data for the [SceneAnalysisEffect.SceneAnalyzed](sceneanalysiseffect_sceneanalyzed.md) event.
## -remarks
Get an instance of this class by handling the [SceneAnalysisEffect.SceneAnalyzed](sceneanalysiseffect_sceneanalyzed.md) event.
For how-to guidance on using the **SceneAnalysisEffect**, see [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture).
## -examples
## -see-also
[Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.SceneAnalyzedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.SceneAnalyzedEventArgs
+
+## -description
+Provides data for the [SceneAnalysisEffect.SceneAnalyzed](sceneanalysiseffect_sceneanalyzed.md) event.
+
+## -remarks
+Get an instance of this class by handling the [SceneAnalysisEffect.SceneAnalyzed](sceneanalysiseffect_sceneanalyzed.md) event.
+
+For how-to guidance on using the **SceneAnalysisEffect**, see [Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture).
+
+## -examples
+
+## -see-also
+[Scene anlysis for MediaCapture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture)
\ No newline at end of file
diff --git a/windows.media.core/sceneanalyzedeventargs_resultframe.md b/windows.media.core/sceneanalyzedeventargs_resultframe.md
index 5f5cb1ec4b..91ec83295f 100644
--- a/windows.media.core/sceneanalyzedeventargs_resultframe.md
+++ b/windows.media.core/sceneanalyzedeventargs_resultframe.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.SceneAnalyzedEventArgs.ResultFrame
--api-type: winrt property
----
# Windows.Media.Core.SceneAnalyzedEventArgs.ResultFrame
## -description
Gets the result frame from the scene analysis operation.
## -property-value
The result frame from the scene analysis operation.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.SceneAnalyzedEventArgs.ResultFrame
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.SceneAnalyzedEventArgs.ResultFrame
+
+## -description
+Gets the result frame from the scene analysis operation.
+
+## -property-value
+The result frame from the scene analysis operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack.md b/windows.media.core/timedmetadatatrack.md
index efd53b4f80..a7821d48b9 100644
--- a/windows.media.core/timedmetadatatrack.md
+++ b/windows.media.core/timedmetadatatrack.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.Core.TimedMetadataTrack
--api-type: winrt class
----
# Windows.Media.Core.TimedMetadataTrack
## -description
Represents a timed metadata track. The track contains a list of [IMediaCue](imediacue.md) objects and raises events at the beginning and end of the time window of each cue.
## -remarks
For how-to guidance for working with timed metadata tracks, see [Media items, playlists, and tracks](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback-with-mediasource).
## -examples
## -see-also
[ITimedMediaTrack](itimedmediatrack.md), [IMediaTrack](imediatrack.md), [Media items, playlists, and tracks](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback-with-mediasource)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.TimedMetadataTrack
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack
+
+## -description
+Represents a timed metadata track. The track contains a list of [IMediaCue](imediacue.md) objects and raises events at the beginning and end of the time window of each cue.
+
+## -remarks
+For how-to guidance for working with timed metadata tracks, see [Media items, playlists, and tracks](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback-with-mediasource).
+
+## -examples
+
+## -see-also
+[ITimedMediaTrack](itimedmediatrack.md), [IMediaTrack](imediatrack.md), [Media items, playlists, and tracks](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback-with-mediasource)
\ No newline at end of file
diff --git a/windows.media.core/timedmetadatatrack_activecues.md b/windows.media.core/timedmetadatatrack_activecues.md
index 4c718ecb78..f5b52827a1 100644
--- a/windows.media.core/timedmetadatatrack_activecues.md
+++ b/windows.media.core/timedmetadatatrack_activecues.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrack.ActiveCues
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrack.ActiveCues
## -description
Gets the list of media cues in the [TimedMetadataTrack](timedmetadatatrack.md) that are currently active. A cue is considered active after its [StartTime](imediacue_starttime.md) has been reached until its [Duration](imediacue_duration.md) has been exceeded.
## -property-value
The list of media cues in the [TimedMetadataTrack](timedmetadatatrack.md) that are currently active.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrack.ActiveCues
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.ActiveCues
+
+## -description
+Gets the list of media cues in the [TimedMetadataTrack](timedmetadatatrack.md) that are currently active. A cue is considered active after its [StartTime](imediacue_starttime.md) has been reached until its [Duration](imediacue_duration.md) has been exceeded.
+
+## -property-value
+The list of media cues in the [TimedMetadataTrack](timedmetadatatrack.md) that are currently active.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_addcue_1989081881.md b/windows.media.core/timedmetadatatrack_addcue_1989081881.md
index c95cc69470..1f27d62733 100644
--- a/windows.media.core/timedmetadatatrack_addcue_1989081881.md
+++ b/windows.media.core/timedmetadatatrack_addcue_1989081881.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Core.TimedMetadataTrack.AddCue(Windows.Media.Core.IMediaCue)
--api-type: winrt method
----
# Windows.Media.Core.TimedMetadataTrack.AddCue
## -description
Adds the specified media cue to the [TimedMetadataTrack](timedmetadatatrack.md).
## -parameters
### -param cue
The media cue to add.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedMetadataTrack.AddCue(Windows.Media.Core.IMediaCue)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.AddCue
+
+## -description
+Adds the specified media cue to the [TimedMetadataTrack](timedmetadatatrack.md).
+
+## -parameters
+### -param cue
+The media cue to add.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_cueentered.md b/windows.media.core/timedmetadatatrack_cueentered.md
index 986f0857a4..da65edc183 100644
--- a/windows.media.core/timedmetadatatrack_cueentered.md
+++ b/windows.media.core/timedmetadatatrack_cueentered.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.TimedMetadataTrack.CueEntered
--api-type: winrt event
----
# Windows.Media.Core.TimedMetadataTrack.CueEntered
## -description
Occurs when a media time window of a media cue is entered. The time window is defined by the [StartTime](imediacue_starttime.md) and [Duration](imediacue_duration.md) of the cue.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.TimedMetadataTrack.CueEntered
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.CueEntered
+
+## -description
+Occurs when a media time window of a media cue is entered. The time window is defined by the [StartTime](imediacue_starttime.md) and [Duration](imediacue_duration.md) of the cue.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_cueexited.md b/windows.media.core/timedmetadatatrack_cueexited.md
index 46cd5fae01..74de91dbfc 100644
--- a/windows.media.core/timedmetadatatrack_cueexited.md
+++ b/windows.media.core/timedmetadatatrack_cueexited.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.TimedMetadataTrack.CueExited
--api-type: winrt event
----
# Windows.Media.Core.TimedMetadataTrack.CueExited
## -description
Occurs when a media time window of a media cue is exited. The time window is defined by the [StartTime](imediacue_starttime.md) and [Duration](imediacue_duration.md) of the cue.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.TimedMetadataTrack.CueExited
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.CueExited
+
+## -description
+Occurs when a media time window of a media cue is exited. The time window is defined by the [StartTime](imediacue_starttime.md) and [Duration](imediacue_duration.md) of the cue.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_cues.md b/windows.media.core/timedmetadatatrack_cues.md
index 17166860f2..6d4382e336 100644
--- a/windows.media.core/timedmetadatatrack_cues.md
+++ b/windows.media.core/timedmetadatatrack_cues.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrack.Cues
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrack.Cues
## -description
Gets a read-only list of the media cues in the [TimedMetadataTrack](timedmetadatatrack.md).
## -property-value
A read-only list of the media cues in the timed metadata track.
## -remarks
Add cues to the list by calling [AddCue](timedmetadatatrack_addcue.md).
The cues in the list are sorted in chronological order by the value of the [StartTime](imediacue_starttime.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrack.Cues
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.Cues
+
+## -description
+Gets a read-only list of the media cues in the [TimedMetadataTrack](timedmetadatatrack.md).
+
+## -property-value
+A read-only list of the media cues in the timed metadata track.
+
+## -remarks
+Add cues to the list by calling [AddCue](timedmetadatatrack_addcue.md).
+
+The cues in the list are sorted in chronological order by the value of the [StartTime](imediacue_starttime.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_dispatchtype.md b/windows.media.core/timedmetadatatrack_dispatchtype.md
index 960b34739f..22f0e8776d 100644
--- a/windows.media.core/timedmetadatatrack_dispatchtype.md
+++ b/windows.media.core/timedmetadatatrack_dispatchtype.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrack.DispatchType
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrack.DispatchType
## -description
Gets the custom string value containing routing information for cues.
## -property-value
The custom string value containing routing information for cues.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrack.DispatchType
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.DispatchType
+
+## -description
+Gets the custom string value containing routing information for cues.
+
+## -property-value
+The custom string value containing routing information for cues.
+
+## -remarks
+
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_id.md b/windows.media.core/timedmetadatatrack_id.md
index 9001752e25..821a031c27 100644
--- a/windows.media.core/timedmetadatatrack_id.md
+++ b/windows.media.core/timedmetadatatrack_id.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrack.Id
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrack.Id
## -description
Gets the identifier for the timed metadata track.
## -property-value
The identifier for the track.
## -remarks
You can specify a value for the **Id** property in the [TimedMetadataTrack constructor](timedmetadatatrack_timedmetadatatrack.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrack.Id
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.Id
+
+## -description
+Gets the identifier for the timed metadata track.
+
+## -property-value
+The identifier for the track.
+
+## -remarks
+You can specify a value for the **Id** property in the [TimedMetadataTrack constructor](timedmetadatatrack_timedmetadatatrack.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_label.md b/windows.media.core/timedmetadatatrack_label.md
index 57e93d105f..ba88185483 100644
--- a/windows.media.core/timedmetadatatrack_label.md
+++ b/windows.media.core/timedmetadatatrack_label.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrack.Label
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrack.Label
## -description
Gets or sets the label for the timed metadata track.
## -property-value
The label for the timed metadata track.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrack.Label
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.Label
+
+## -description
+Gets or sets the label for the timed metadata track.
+
+## -property-value
+The label for the timed metadata track.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_language.md b/windows.media.core/timedmetadatatrack_language.md
index 200d2fa703..e429a2dceb 100644
--- a/windows.media.core/timedmetadatatrack_language.md
+++ b/windows.media.core/timedmetadatatrack_language.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrack.Language
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrack.Language
## -description
Gets a string indicating the language of the timed metadata track.
## -property-value
A string indicating the language of the timed metadata track.
## -remarks
You can specify a value for the **Language** property in the [TimedMetadataTrack constructor](timedmetadatatrack_timedmetadatatrack.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrack.Language
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.Language
+
+## -description
+Gets a string indicating the language of the timed metadata track.
+
+## -property-value
+A string indicating the language of the timed metadata track.
+
+## -remarks
+You can specify a value for the **Language** property in the [TimedMetadataTrack constructor](timedmetadatatrack_timedmetadatatrack.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_name.md b/windows.media.core/timedmetadatatrack_name.md
index 5941ebda8a..98e54ceb2c 100644
--- a/windows.media.core/timedmetadatatrack_name.md
+++ b/windows.media.core/timedmetadatatrack_name.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrack.Name
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrack.Name
## -description
Gets the name of the [TimedMetadataTrack](timedmetadatatrack.md).
## -property-value
The name of the [TimedMetadataTrack](timedmetadatatrack.md).
## -remarks
The **Name** property can be used in your UI to identify the metadata track to the user.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrack.Name
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.Name
+
+## -description
+Gets the name of the [TimedMetadataTrack](timedmetadatatrack.md).
+
+## -property-value
+The name of the [TimedMetadataTrack](timedmetadatatrack.md).
+
+## -remarks
+The **Name** property can be used in your UI to identify the metadata track to the user.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_playbackitem.md b/windows.media.core/timedmetadatatrack_playbackitem.md
index b94776b9b6..953b4a9076 100644
--- a/windows.media.core/timedmetadatatrack_playbackitem.md
+++ b/windows.media.core/timedmetadatatrack_playbackitem.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrack.PlaybackItem
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrack.PlaybackItem
## -description
Gets the [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) containing the [TimedMetadataTrack](timedmetadatatrack.md).
## -property-value
The [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) containing the [TimedMetadataTrack](timedmetadatatrack.md).
## -remarks
A [TimedMetadataTrack](timedmetadatatrack.md) is contained by a [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) when it is in the item's [TimedMetadataTracks](../windows.media.playback/mediaplaybackitem_timedmetadatatracks.md) collection. Use the **PlaybackItem** property to get a reference to the **MediaPlaybackItem** that contains the **TimedMetadataTrack**.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrack.PlaybackItem
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.PlaybackItem
+
+## -description
+Gets the [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) containing the [TimedMetadataTrack](timedmetadatatrack.md).
+
+## -property-value
+The [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) containing the [TimedMetadataTrack](timedmetadatatrack.md).
+
+## -remarks
+A [TimedMetadataTrack](timedmetadatatrack.md) is contained by a [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) when it is in the item's [TimedMetadataTracks](../windows.media.playback/mediaplaybackitem_timedmetadatatracks.md) collection. Use the **PlaybackItem** property to get a reference to the **MediaPlaybackItem** that contains the **TimedMetadataTrack**.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_removecue_1017075201.md b/windows.media.core/timedmetadatatrack_removecue_1017075201.md
index f013a92ba1..51eb216a64 100644
--- a/windows.media.core/timedmetadatatrack_removecue_1017075201.md
+++ b/windows.media.core/timedmetadatatrack_removecue_1017075201.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Core.TimedMetadataTrack.RemoveCue(Windows.Media.Core.IMediaCue)
--api-type: winrt method
----
# Windows.Media.Core.TimedMetadataTrack.RemoveCue
## -description
Removes the specified media cue from the [TimedMetadataTrack](timedmetadatatrack.md).
## -parameters
### -param cue
The media cue to remove.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedMetadataTrack.RemoveCue(Windows.Media.Core.IMediaCue)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.RemoveCue
+
+## -description
+Removes the specified media cue from the [TimedMetadataTrack](timedmetadatatrack.md).
+
+## -parameters
+### -param cue
+The media cue to remove.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_timedmetadatakind.md b/windows.media.core/timedmetadatatrack_timedmetadatakind.md
index e75ca023d1..e7bd0f454b 100644
--- a/windows.media.core/timedmetadatatrack_timedmetadatakind.md
+++ b/windows.media.core/timedmetadatatrack_timedmetadatakind.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrack.TimedMetadataKind
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrack.TimedMetadataKind
## -description
Gets a value indicating the kind of metadata contained in the track.
## -property-value
A value indicating the kind of metadata contained in the track.
## -remarks
You can specify a value for the **TimedMetadataKind** property in the [TimedMetadataTrack constructor](timedmetadatatrack_timedmetadatatrack.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrack.TimedMetadataKind
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.TimedMetadataKind
+
+## -description
+Gets a value indicating the kind of metadata contained in the track.
+
+## -property-value
+A value indicating the kind of metadata contained in the track.
+
+## -remarks
+You can specify a value for the **TimedMetadataKind** property in the [TimedMetadataTrack constructor](timedmetadatatrack_timedmetadatatrack.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_timedmetadatatrack_2131229248.md b/windows.media.core/timedmetadatatrack_timedmetadatatrack_2131229248.md
index 6acfe0014e..fae61be75a 100644
--- a/windows.media.core/timedmetadatatrack_timedmetadatatrack_2131229248.md
+++ b/windows.media.core/timedmetadatatrack_timedmetadatatrack_2131229248.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.Core.TimedMetadataTrack.#ctor(System.String,System.String,Windows.Media.Core.TimedMetadataKind)
--api-type: winrt method
----
# Windows.Media.Core.TimedMetadataTrack.TimedMetadataTrack
## -description
Initializes a new instance of the [TimedMetadataTrack](timedmetadatatrack.md) class.
## -parameters
### -param id
An identifier for the new timed metadata track.
### -param language
A string indicating the language of the new timed metadata track.
### -param kind
A value indicating the kind of metadata contained in the new track.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedMetadataTrack.#ctor(System.String,System.String,Windows.Media.Core.TimedMetadataKind)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.TimedMetadataTrack
+
+## -description
+Initializes a new instance of the [TimedMetadataTrack](timedmetadatatrack.md) class.
+
+## -parameters
+### -param id
+An identifier for the new timed metadata track.
+
+### -param language
+A string indicating the language of the new timed metadata track.
+
+### -param kind
+A value indicating the kind of metadata contained in the new track.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_trackfailed.md b/windows.media.core/timedmetadatatrack_trackfailed.md
index 3c55132959..ebb574e362 100644
--- a/windows.media.core/timedmetadatatrack_trackfailed.md
+++ b/windows.media.core/timedmetadatatrack_trackfailed.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.TimedMetadataTrack.TrackFailed
--api-type: winrt event
----
# Windows.Media.Core.TimedMetadataTrack.TrackFailed
## -description
Raised when an error occurs with the [TimedMetadataTrack](timedmetadatatrack.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.TimedMetadataTrack.TrackFailed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.TrackFailed
+
+## -description
+Raised when an error occurs with the [TimedMetadataTrack](timedmetadatatrack.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrack_trackkind.md b/windows.media.core/timedmetadatatrack_trackkind.md
index 14618af774..eee4ab2a59 100644
--- a/windows.media.core/timedmetadatatrack_trackkind.md
+++ b/windows.media.core/timedmetadatatrack_trackkind.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrack.TrackKind
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrack.TrackKind
## -description
Gets a value specifying the type of the media track. For [TimedMetadataTrack](timedmetadatatrack.md) this value will always be [MediaTrackKind::TimedMetadata](mediatrackkind.md).
## -property-value
A value specifying the type of the media track.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrack.TrackKind
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrack.TrackKind
+
+## -description
+Gets a value specifying the type of the media track. For [TimedMetadataTrack](timedmetadatatrack.md) this value will always be [MediaTrackKind::TimedMetadata](mediatrackkind.md).
+
+## -property-value
+A value specifying the type of the media track.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrackerror.md b/windows.media.core/timedmetadatatrackerror.md
index e24f170a22..c4f0380b07 100644
--- a/windows.media.core/timedmetadatatrackerror.md
+++ b/windows.media.core/timedmetadatatrackerror.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.TimedMetadataTrackError
--api-type: winrt class
----
# Windows.Media.Core.TimedMetadataTrackError
## -description
Provides information about an error that occurred with a timed metadata track.
## -remarks
Get an instance of this class by accessing the [TimedMetadataTrackErrorEventArgs.Error](timedmetadatatrackerroreventargs_error.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.TimedMetadataTrackError
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrackError
+
+## -description
+Provides information about an error that occurred with a timed metadata track.
+
+## -remarks
+Get an instance of this class by accessing the [TimedMetadataTrackErrorEventArgs.Error](timedmetadatatrackerroreventargs_error.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrackerror_errorcode.md b/windows.media.core/timedmetadatatrackerror_errorcode.md
index 813f1fa674..58ebdaeabb 100644
--- a/windows.media.core/timedmetadatatrackerror_errorcode.md
+++ b/windows.media.core/timedmetadatatrackerror_errorcode.md
@@ -1,3 +1,24 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrackError.ErrorCode
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrackError.ErrorCode
## -description
Gets the error code associated with the timed metadata track error.
## -property-value
The error code associated with the timed metadata track error.
## -remarks
This value provides high-level information about the error that occurred with the timed metadata track. To get the low-level exception associated with the error, call [TimedMetadataTrackError.Propagate](timedmetadatatrackerror_propagate.md) which will cause the underlying exception to be raised.
## -examples
## -see-also
[TimedMetadataTrackError::Propagate](timedmetadatatrackerror_propagate.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrackError.ErrorCode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrackError.ErrorCode
+
+## -description
+Gets the error code associated with the timed metadata track error.
+
+## -property-value
+The error code associated with the timed metadata track error.
+
+## -remarks
+This value provides high-level information about the error that occurred with the timed metadata track. To get the low-level exception associated with the error, call [TimedMetadataTrackError.Propagate](timedmetadatatrackerror_propagate.md) which will cause the underlying exception to be raised.
+
+## -examples
+
+## -see-also
+[TimedMetadataTrackError::Propagate](timedmetadatatrackerror_propagate.md)
\ No newline at end of file
diff --git a/windows.media.core/timedmetadatatrackerror_extendederror.md b/windows.media.core/timedmetadatatrackerror_extendederror.md
index f57108f14c..44307916f4 100644
--- a/windows.media.core/timedmetadatatrackerror_extendederror.md
+++ b/windows.media.core/timedmetadatatrackerror_extendederror.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrackError.ExtendedError
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrackError.ExtendedError
## -description
Gets the extended error code for the [TimedMetadataTrackError](timedmetadatatrackerror.md).
## -property-value
The extended error code for the [TimedMetadataTrackError](timedmetadatatrackerror.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrackError.ExtendedError
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrackError.ExtendedError
+
+## -description
+Gets the extended error code for the [TimedMetadataTrackError](timedmetadatatrackerror.md).
+
+## -property-value
+The extended error code for the [TimedMetadataTrackError](timedmetadatatrackerror.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrackfailedeventargs.md b/windows.media.core/timedmetadatatrackfailedeventargs.md
index 2b15c7495b..f4ad18b6dc 100644
--- a/windows.media.core/timedmetadatatrackfailedeventargs.md
+++ b/windows.media.core/timedmetadatatrackfailedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.TimedMetadataTrackFailedEventArgs
--api-type: winrt class
----
# Windows.Media.Core.TimedMetadataTrackFailedEventArgs
## -description
Provides data for the [TimedMetadataTrack.TrackFailed](timedmetadatatrack_trackfailed.md) event.
## -remarks
Get an instance of this class by handling the [TimedMetadataTrack.TrackFailed](timedmetadatatrack_trackfailed.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.TimedMetadataTrackFailedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrackFailedEventArgs
+
+## -description
+Provides data for the [TimedMetadataTrack.TrackFailed](timedmetadatatrack_trackfailed.md) event.
+
+## -remarks
+Get an instance of this class by handling the [TimedMetadataTrack.TrackFailed](timedmetadatatrack_trackfailed.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedmetadatatrackfailedeventargs_error.md b/windows.media.core/timedmetadatatrackfailedeventargs_error.md
index 8135e3f95c..205fdb43ad 100644
--- a/windows.media.core/timedmetadatatrackfailedeventargs_error.md
+++ b/windows.media.core/timedmetadatatrackfailedeventargs_error.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedMetadataTrackFailedEventArgs.Error
--api-type: winrt property
----
# Windows.Media.Core.TimedMetadataTrackFailedEventArgs.Error
## -description
Gets an object representing the error that occurred with the timed metadata track.
## -property-value
An object representing the error that occurred with the timed metadata track.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedMetadataTrackFailedEventArgs.Error
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedMetadataTrackFailedEventArgs.Error
+
+## -description
+Gets an object representing the error that occurred with the timed metadata track.
+
+## -property-value
+An object representing the error that occurred with the timed metadata track.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextcue.md b/windows.media.core/timedtextcue.md
index 8aa201b2a8..28fc893ff2 100644
--- a/windows.media.core/timedtextcue.md
+++ b/windows.media.core/timedtextcue.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.Core.TimedTextCue
--api-type: winrt class
----
# Windows.Media.Core.TimedTextCue
## -description
Represents a text cue in a [TimedMetadataTrack](timedmetadatatrack.md).
## -remarks
After creating a **TimeTextCue**, you can add it to a [TimedMetadataTrack](timedmetadatatrack.md) by calling [AddCue](timedmetadatatrack_addcue.md).
## -examples
## -see-also
[ITimedTextCue](itimedtextcue.md), [IMediaCue](imediacue.md), [TimedMetadataTrack](timedmetadatatrack.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.TimedTextCue
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.TimedTextCue
+
+## -description
+Represents a text cue in a [TimedMetadataTrack](timedmetadatatrack.md).
+
+## -remarks
+After creating a **TimeTextCue**, you can add it to a [TimedMetadataTrack](timedmetadatatrack.md) by calling [AddCue](timedmetadatatrack_addcue.md).
+
+## -examples
+
+## -see-also
+[ITimedTextCue](itimedtextcue.md), [IMediaCue](imediacue.md), [TimedMetadataTrack](timedmetadatatrack.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextcue_cueregion.md b/windows.media.core/timedtextcue_cueregion.md
index ffca230eaf..63536959ab 100644
--- a/windows.media.core/timedtextcue_cueregion.md
+++ b/windows.media.core/timedtextcue_cueregion.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextCue.CueRegion
--api-type: winrt property
----
# Windows.Media.Core.TimedTextCue.CueRegion
## -description
Gets or sets the [TimedTextRegion](timedtextregion.md) of the cue, which defines the style of the rendering area for the cue.
## -property-value
The [TimedTextRegion](timedtextregion.md) of the cue
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextCue.CueRegion
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextCue.CueRegion
+
+## -description
+Gets or sets the [TimedTextRegion](timedtextregion.md) of the cue, which defines the style of the rendering area for the cue.
+
+## -property-value
+The [TimedTextRegion](timedtextregion.md) of the cue
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextcue_cuestyle.md b/windows.media.core/timedtextcue_cuestyle.md
index 59db39544e..bbec57eef3 100644
--- a/windows.media.core/timedtextcue_cuestyle.md
+++ b/windows.media.core/timedtextcue_cuestyle.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextCue.CueStyle
--api-type: winrt property
----
# Windows.Media.Core.TimedTextCue.CueStyle
## -description
Gets or sets the [TimedTextStyle](timedtextstyle.md) of the cue, which defines the style of the rendered text.
## -property-value
The [TimedTextStyle](timedtextstyle.md) of the cue
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextCue.CueStyle
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextCue.CueStyle
+
+## -description
+Gets or sets the [TimedTextStyle](timedtextstyle.md) of the cue, which defines the style of the rendered text.
+
+## -property-value
+The [TimedTextStyle](timedtextstyle.md) of the cue
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextcue_duration.md b/windows.media.core/timedtextcue_duration.md
index 892bfe7bb8..26f7cedff1 100644
--- a/windows.media.core/timedtextcue_duration.md
+++ b/windows.media.core/timedtextcue_duration.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextCue.Duration
--api-type: winrt property
----
# Windows.Media.Core.TimedTextCue.Duration
## -description
Gets or sets the duration of the cue.
## -property-value
The duration of the cue.
## -remarks
At the end of a cue's duration, the [TimedMetadataTrack.CueExited](timedmetadatatrack_cueexited.md) event is raised.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextCue.Duration
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextCue.Duration
+
+## -description
+Gets or sets the duration of the cue.
+
+## -property-value
+The duration of the cue.
+
+## -remarks
+At the end of a cue's duration, the [TimedMetadataTrack.CueExited](timedmetadatatrack_cueexited.md) event is raised.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextcue_id.md b/windows.media.core/timedtextcue_id.md
index 6d443f1178..b5cdb6209f 100644
--- a/windows.media.core/timedtextcue_id.md
+++ b/windows.media.core/timedtextcue_id.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextCue.Id
--api-type: winrt property
----
# Windows.Media.Core.TimedTextCue.Id
## -description
Gets or sets an identifier for the cue.
## -property-value
An identifier for the cue.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextCue.Id
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextCue.Id
+
+## -description
+Gets or sets an identifier for the cue.
+
+## -property-value
+An identifier for the cue.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextcue_lines.md b/windows.media.core/timedtextcue_lines.md
index 40536c05b9..7652c8d6ed 100644
--- a/windows.media.core/timedtextcue_lines.md
+++ b/windows.media.core/timedtextcue_lines.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextCue.Lines
--api-type: winrt property
----
# Windows.Media.Core.TimedTextCue.Lines
## -description
Gets the collection of [TimedTextLine](timedtextline.md) objects that convey the text of the cue.
## -property-value
A collection of [TimedTextLine](timedtextline.md) objects.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextCue.Lines
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextCue.Lines
+
+## -description
+Gets the collection of [TimedTextLine](timedtextline.md) objects that convey the text of the cue.
+
+## -property-value
+A collection of [TimedTextLine](timedtextline.md) objects.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextcue_starttime.md b/windows.media.core/timedtextcue_starttime.md
index a419753cf7..1cbc4daa3a 100644
--- a/windows.media.core/timedtextcue_starttime.md
+++ b/windows.media.core/timedtextcue_starttime.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextCue.StartTime
--api-type: winrt property
----
# Windows.Media.Core.TimedTextCue.StartTime
## -description
Gets the start time of the cue.
## -property-value
The start time of the cue.
## -remarks
When a cue's start time is reached, the [TimedMetadataTrack.CueEntered](timedmetadatatrack_cueentered.md) event is raised.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextCue.StartTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextCue.StartTime
+
+## -description
+Gets the start time of the cue.
+
+## -property-value
+The start time of the cue.
+
+## -remarks
+When a cue's start time is reached, the [TimedMetadataTrack.CueEntered](timedmetadatatrack_cueentered.md) event is raised.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextcue_timedtextcue_1221375020.md b/windows.media.core/timedtextcue_timedtextcue_1221375020.md
index 49d238f2db..80f4adf4a6 100644
--- a/windows.media.core/timedtextcue_timedtextcue_1221375020.md
+++ b/windows.media.core/timedtextcue_timedtextcue_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.TimedTextCue.#ctor
--api-type: winrt method
----
# Windows.Media.Core.TimedTextCue.TimedTextCue
## -description
Initializes a new instance of the [TimedTextCue](timedtextcue.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedTextCue.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedTextCue.TimedTextCue
+
+## -description
+Initializes a new instance of the [TimedTextCue](timedtextcue.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextline.md b/windows.media.core/timedtextline.md
index 9f2a7f6204..9c994f8e5f 100644
--- a/windows.media.core/timedtextline.md
+++ b/windows.media.core/timedtextline.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.TimedTextLine
--api-type: winrt class
----
# Windows.Media.Core.TimedTextLine
## -description
Represents a line of text that is displayed with a [TimedTextCue](timedtextcue.md).
## -remarks
## -examples
## -see-also
[ITimedTextLine](itimedtextline.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.TimedTextLine
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.TimedTextLine
+
+## -description
+Represents a line of text that is displayed with a [TimedTextCue](timedtextcue.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
+[ITimedTextLine](itimedtextline.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextline_subformats.md b/windows.media.core/timedtextline_subformats.md
index 51444648da..17f53fee7d 100644
--- a/windows.media.core/timedtextline_subformats.md
+++ b/windows.media.core/timedtextline_subformats.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextLine.Subformats
--api-type: winrt property
----
# Windows.Media.Core.TimedTextLine.Subformats
## -description
Gets a list of [TimedTextSubformat](timedtextsubformat.md) objects that provide formatting for substrings within the [TimedTextLine](timedtextlinealignment.md).
## -property-value
A list of [TimedTextSubformat](timedtextsubformat.md) objects that provide formatting for substrings within the timed text line.
## -remarks
## -examples
## -see-also
[TimedTextSubformat](timedtextsubformat.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextLine.Subformats
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextLine.Subformats
+
+## -description
+Gets a list of [TimedTextSubformat](timedtextsubformat.md) objects that provide formatting for substrings within the [TimedTextLine](timedtextlinealignment.md).
+
+## -property-value
+A list of [TimedTextSubformat](timedtextsubformat.md) objects that provide formatting for substrings within the timed text line.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[TimedTextSubformat](timedtextsubformat.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextline_text.md b/windows.media.core/timedtextline_text.md
index 22515e4f46..6b17cabe73 100644
--- a/windows.media.core/timedtextline_text.md
+++ b/windows.media.core/timedtextline_text.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextLine.Text
--api-type: winrt property
----
# Windows.Media.Core.TimedTextLine.Text
## -description
Gets or sets the text content of the [TimedTextLine](timedtextlinealignment.md).
## -property-value
The text content of the [TimedTextLine](timedtextlinealignment.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextLine.Text
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextLine.Text
+
+## -description
+Gets or sets the text content of the [TimedTextLine](timedtextlinealignment.md).
+
+## -property-value
+The text content of the [TimedTextLine](timedtextlinealignment.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextline_timedtextline_1221375020.md b/windows.media.core/timedtextline_timedtextline_1221375020.md
index cc238d65be..ceafb0fc7a 100644
--- a/windows.media.core/timedtextline_timedtextline_1221375020.md
+++ b/windows.media.core/timedtextline_timedtextline_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.TimedTextLine.#ctor
--api-type: winrt method
----
# Windows.Media.Core.TimedTextLine.TimedTextLine
## -description
Initializes a new instance of the [TimedTextLine](timedtextline.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedTextLine.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedTextLine.TimedTextLine
+
+## -description
+Initializes a new instance of the [TimedTextLine](timedtextline.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextregion.md b/windows.media.core/timedtextregion.md
index 36cdec9d24..e6f245ef74 100644
--- a/windows.media.core/timedtextregion.md
+++ b/windows.media.core/timedtextregion.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.TimedTextRegion
--api-type: winrt class
----
# Windows.Media.Core.TimedTextRegion
## -description
Exposes properties for customizing the appearance of the rendering area of a [TimedTextCue](timedtextcue.md).
## -remarks
## -examples
## -see-also
[ITimedTextRegion](itimedtextregion.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.TimedTextRegion
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion
+
+## -description
+Exposes properties for customizing the appearance of the rendering area of a [TimedTextCue](timedtextcue.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
+[ITimedTextRegion](itimedtextregion.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextregion_background.md b/windows.media.core/timedtextregion_background.md
index 5b1ae054f2..5b0ffb05fa 100644
--- a/windows.media.core/timedtextregion_background.md
+++ b/windows.media.core/timedtextregion_background.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.Background
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.Background
## -description
Gets or sets the background color of the [TimedTextRegion](timedtextregion.md).
## -property-value
The background color of the [TimedTextRegion](timedtextregion.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.Background
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.Background
+
+## -description
+Gets or sets the background color of the [TimedTextRegion](timedtextregion.md).
+
+## -property-value
+The background color of the [TimedTextRegion](timedtextregion.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextregion_displayalignment.md b/windows.media.core/timedtextregion_displayalignment.md
index 69abfa3960..d32cfb4414 100644
--- a/windows.media.core/timedtextregion_displayalignment.md
+++ b/windows.media.core/timedtextregion_displayalignment.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.DisplayAlignment
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.DisplayAlignment
## -description
Gets or sets the display alignment of the [TimedTextRegion](timedtextregion.md).
## -property-value
The display alignment of the [TimedTextRegion](timedtextregion.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.DisplayAlignment
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.DisplayAlignment
+
+## -description
+Gets or sets the display alignment of the [TimedTextRegion](timedtextregion.md).
+
+## -property-value
+The display alignment of the [TimedTextRegion](timedtextregion.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextregion_extent.md b/windows.media.core/timedtextregion_extent.md
index 0af5bcf56a..20446f6072 100644
--- a/windows.media.core/timedtextregion_extent.md
+++ b/windows.media.core/timedtextregion_extent.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.Extent
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.Extent
## -description
Gets or sets the extent of the [TimedTextRegion](timedtextregion.md), which is the rendered size of the region either in pixels or in percentage of available space.
## -property-value
The extent of the [TimedTextRegion](timedtextregion.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.Extent
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.Extent
+
+## -description
+Gets or sets the extent of the [TimedTextRegion](timedtextregion.md), which is the rendered size of the region either in pixels or in percentage of available space.
+
+## -property-value
+The extent of the [TimedTextRegion](timedtextregion.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextregion_isoverflowclipped.md b/windows.media.core/timedtextregion_isoverflowclipped.md
index 91bddad312..f4befbd600 100644
--- a/windows.media.core/timedtextregion_isoverflowclipped.md
+++ b/windows.media.core/timedtextregion_isoverflowclipped.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.IsOverflowClipped
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.IsOverflowClipped
## -description
Gets or sets a value indicating whether text overflowing the region is clipped.
## -property-value
True if overflowing text is clipped; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.IsOverflowClipped
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.IsOverflowClipped
+
+## -description
+Gets or sets a value indicating whether text overflowing the region is clipped.
+
+## -property-value
+True if overflowing text is clipped; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextregion_lineheight.md b/windows.media.core/timedtextregion_lineheight.md
index 94a8088c98..11513e724a 100644
--- a/windows.media.core/timedtextregion_lineheight.md
+++ b/windows.media.core/timedtextregion_lineheight.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.LineHeight
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.LineHeight
## -description
Gets or sets a value that indicates the height of each line of content.
## -property-value
A value that indicates the height of each line of content.
## -remarks
## -examples
## -see-also
[TimedTextDouble](timedtextdouble.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.LineHeight
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.LineHeight
+
+## -description
+Gets or sets a value that indicates the height of each line of content.
+
+## -property-value
+A value that indicates the height of each line of content.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[TimedTextDouble](timedtextdouble.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextregion_name.md b/windows.media.core/timedtextregion_name.md
index f4b61da4bd..0019a74d55 100644
--- a/windows.media.core/timedtextregion_name.md
+++ b/windows.media.core/timedtextregion_name.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.Name
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.Name
## -description
Gets or sets a string representing the name of the [TimedTextRegion](timedtextregion.md).
## -property-value
The name of the [TimedTextRegion](timedtextregion.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.Name
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.Name
+
+## -description
+Gets or sets a string representing the name of the [TimedTextRegion](timedtextregion.md).
+
+## -property-value
+The name of the [TimedTextRegion](timedtextregion.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextregion_padding.md b/windows.media.core/timedtextregion_padding.md
index 995850ac98..afba17fd37 100644
--- a/windows.media.core/timedtextregion_padding.md
+++ b/windows.media.core/timedtextregion_padding.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.Padding
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.Padding
## -description
Gets or sets a value that indicates the thickness of padding space between the boundaries of the content area and the content displayed by a [TimedTextRegion](timedtextregion.md).
## -property-value
A value that indicates the thickness of padding space between the boundaries of the content area and the content displayed by a [TimedTextRegion](timedtextregion.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.Padding
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.Padding
+
+## -description
+Gets or sets a value that indicates the thickness of padding space between the boundaries of the content area and the content displayed by a [TimedTextRegion](timedtextregion.md).
+
+## -property-value
+A value that indicates the thickness of padding space between the boundaries of the content area and the content displayed by a [TimedTextRegion](timedtextregion.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextregion_position.md b/windows.media.core/timedtextregion_position.md
index d571b8d4b2..1fa3984025 100644
--- a/windows.media.core/timedtextregion_position.md
+++ b/windows.media.core/timedtextregion_position.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.Position
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.Position
## -description
Gets or sets the position of the [TimedTextRegion](timedtextregion.md), relative to the top left corner of the video frame.
## -property-value
The position of the [TimedTextRegion](timedtextregion.md)
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.Position
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.Position
+
+## -description
+Gets or sets the position of the [TimedTextRegion](timedtextregion.md), relative to the top left corner of the video frame.
+
+## -property-value
+The position of the [TimedTextRegion](timedtextregion.md)
+
+## -remarks
+
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextregion_scrollmode.md b/windows.media.core/timedtextregion_scrollmode.md
index 1e7cfc049c..5199974f53 100644
--- a/windows.media.core/timedtextregion_scrollmode.md
+++ b/windows.media.core/timedtextregion_scrollmode.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.ScrollMode
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.ScrollMode
## -description
Gets a value indicating the method in which lines of text scroll through the region.
## -property-value
A value indicating the method in which lines of text scroll through the region.
## -remarks
## -examples
## -see-also
[TimedTextScrollMode](timedtextscrollmode.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.ScrollMode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.ScrollMode
+
+## -description
+Gets a value indicating the method in which lines of text scroll through the region.
+
+## -property-value
+A value indicating the method in which lines of text scroll through the region.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[TimedTextScrollMode](timedtextscrollmode.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextregion_textwrapping.md b/windows.media.core/timedtextregion_textwrapping.md
index 208975f071..abfa0735de 100644
--- a/windows.media.core/timedtextregion_textwrapping.md
+++ b/windows.media.core/timedtextregion_textwrapping.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.TextWrapping
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.TextWrapping
## -description
Gets or sets a value indicating whether text wraps when it reaches the edge of the [TimedTextRegion](timedtextregion.md).
## -property-value
A value indicating whether text wraps when it reaches the edge of the region.
## -remarks
## -examples
## -see-also
[TimedTextWrapping](timedtextwrapping.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.TextWrapping
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.TextWrapping
+
+## -description
+Gets or sets a value indicating whether text wraps when it reaches the edge of the [TimedTextRegion](timedtextregion.md).
+
+## -property-value
+A value indicating whether text wraps when it reaches the edge of the region.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[TimedTextWrapping](timedtextwrapping.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextregion_timedtextregion_1221375020.md b/windows.media.core/timedtextregion_timedtextregion_1221375020.md
index cf01d189b1..840fe2307b 100644
--- a/windows.media.core/timedtextregion_timedtextregion_1221375020.md
+++ b/windows.media.core/timedtextregion_timedtextregion_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.TimedTextRegion.#ctor
--api-type: winrt method
----
# Windows.Media.Core.TimedTextRegion.TimedTextRegion
## -description
Initializes a new instance of the [TimedTextRegion](timedtextregion.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedTextRegion.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.TimedTextRegion
+
+## -description
+Initializes a new instance of the [TimedTextRegion](timedtextregion.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextregion_writingmode.md b/windows.media.core/timedtextregion_writingmode.md
index 9fc091b169..949e2384fc 100644
--- a/windows.media.core/timedtextregion_writingmode.md
+++ b/windows.media.core/timedtextregion_writingmode.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.WritingMode
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.WritingMode
## -description
Gets or sets a value indicating the direction that text flows within the [TimedTextRegion](timedtextregion.md).
## -property-value
A value indicating the direction that text flows within the region.
## -remarks
## -examples
## -see-also
[TimedTextWritingMode](timedtextwritingmode.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.WritingMode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.WritingMode
+
+## -description
+Gets or sets a value indicating the direction that text flows within the [TimedTextRegion](timedtextregion.md).
+
+## -property-value
+A value indicating the direction that text flows within the region.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[TimedTextWritingMode](timedtextwritingmode.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextregion_zindex.md b/windows.media.core/timedtextregion_zindex.md
index 3df0969462..574f574fa4 100644
--- a/windows.media.core/timedtextregion_zindex.md
+++ b/windows.media.core/timedtextregion_zindex.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextRegion.ZIndex
--api-type: winrt property
----
# Windows.Media.Core.TimedTextRegion.ZIndex
## -description
Gets or sets the Z-order of the [TimedTextRegion](timedtextregion.md), relative to other active regions on the screen, in case they overlap.
## -property-value
The Z-order of the [TimedTextRegion](timedtextregion.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextRegion.ZIndex
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextRegion.ZIndex
+
+## -description
+Gets or sets the Z-order of the [TimedTextRegion](timedtextregion.md), relative to other active regions on the screen, in case they overlap.
+
+## -property-value
+The Z-order of the [TimedTextRegion](timedtextregion.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextsource.md b/windows.media.core/timedtextsource.md
index cb8a8e0695..c36cd6a7dd 100644
--- a/windows.media.core/timedtextsource.md
+++ b/windows.media.core/timedtextsource.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.TimedTextSource
--api-type: winrt class
----
# Windows.Media.Core.TimedTextSource
## -description
Represents a source of timed text data.
## -remarks
Get an instance of **TimedTextSource** from one of the factory methods, [CreateFromStream](timedtextsource_createfromstream.md) or [CreateFromUri](timedtextsource_createfromuri.md). After obtaining an instance, you can use it to set the [MediaSource.ExternalTimedTextSources](mediasource_externaltimedtextsources.md) property of a [MediaSource](mediasource.md) object to initialize its [ExternalTimedMetadataTracks](mediasource_externaltimedmetadatatracks.md) collection.
For how-to guidance for working with external timed text sources, see [Media items, playlists, and tracks](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback-with-mediasource).
## -examples
## -see-also
[ITimedTextSource](itimedtextsource.md), [Media items, playlists, and tracks](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback-with-mediasource)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.TimedTextSource
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.TimedTextSource
+
+## -description
+Represents a source of timed text data.
+
+## -remarks
+Get an instance of **TimedTextSource** from one of the factory methods, [CreateFromStream](timedtextsource_createfromstream.md) or [CreateFromUri](timedtextsource_createfromuri.md). After obtaining an instance, you can use it to set the [MediaSource.ExternalTimedTextSources](mediasource_externaltimedtextsources.md) property of a [MediaSource](mediasource.md) object to initialize its [ExternalTimedMetadataTracks](mediasource_externaltimedmetadatatracks.md) collection.
+
+For how-to guidance for working with external timed text sources, see [Media items, playlists, and tracks](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback-with-mediasource).
+
+## -examples
+
+## -see-also
+[ITimedTextSource](itimedtextsource.md), [Media items, playlists, and tracks](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback-with-mediasource)
\ No newline at end of file
diff --git a/windows.media.core/timedtextsource_createfromstream_1985521886.md b/windows.media.core/timedtextsource_createfromstream_1985521886.md
index bcc309ccc0..6856c4ca51 100644
--- a/windows.media.core/timedtextsource_createfromstream_1985521886.md
+++ b/windows.media.core/timedtextsource_createfromstream_1985521886.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Core.TimedTextSource.CreateFromStream(Windows.Storage.Streams.IRandomAccessStream)
--api-type: winrt method
----
# Windows.Media.Core.TimedTextSource.CreateFromStream
## -description
Creates a new instance of [TimedTextSource](timedtextsource.md) from the provided stream.
## -parameters
### -param stream
The stream from which the timed text source is created.
## -returns
The new timed text source.
## -remarks
## -examples
## -see-also
[CreateFromStream(IRandomAccessStream, String)](timedtextsource_createfromstream_983868770.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedTextSource.CreateFromStream(Windows.Storage.Streams.IRandomAccessStream)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedTextSource.CreateFromStream
+
+## -description
+Creates a new instance of [TimedTextSource](timedtextsource.md) from the provided stream.
+
+## -parameters
+### -param stream
+The stream from which the timed text source is created.
+
+## -returns
+The new timed text source.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateFromStream(IRandomAccessStream, String)](timedtextsource_createfromstream_983868770.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextsource_createfromstream_983868770.md b/windows.media.core/timedtextsource_createfromstream_983868770.md
index c34c6b271c..8fea053f51 100644
--- a/windows.media.core/timedtextsource_createfromstream_983868770.md
+++ b/windows.media.core/timedtextsource_createfromstream_983868770.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.Core.TimedTextSource.CreateFromStream(Windows.Storage.Streams.IRandomAccessStream,System.String)
--api-type: winrt method
----
# Windows.Media.Core.TimedTextSource.CreateFromStream
## -description
Creates a new instance of [TimedTextSource](timedtextsource.md) with the specified default language from the provided stream.
## -parameters
### -param stream
The stream from which the timed text source is created.
### -param defaultLanguage
A string specifying the default language for the timed text source.
## -returns
The new timed text source.
## -remarks
## -examples
## -see-also
[CreateFromStream(IRandomAccessStream)](timedtextsource_createfromstream_1985521886.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedTextSource.CreateFromStream(Windows.Storage.Streams.IRandomAccessStream,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedTextSource.CreateFromStream
+
+## -description
+Creates a new instance of [TimedTextSource](timedtextsource.md) with the specified default language from the provided stream.
+
+## -parameters
+### -param stream
+The stream from which the timed text source is created.
+
+### -param defaultLanguage
+A string specifying the default language for the timed text source.
+
+## -returns
+The new timed text source.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateFromStream(IRandomAccessStream)](timedtextsource_createfromstream_1985521886.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextsource_createfromuri_1421797945.md b/windows.media.core/timedtextsource_createfromuri_1421797945.md
index 9a0397d1b6..58ad14868a 100644
--- a/windows.media.core/timedtextsource_createfromuri_1421797945.md
+++ b/windows.media.core/timedtextsource_createfromuri_1421797945.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.Core.TimedTextSource.CreateFromUri(Windows.Foundation.Uri,System.String)
--api-type: winrt method
----
# Windows.Media.Core.TimedTextSource.CreateFromUri
## -description
Creates a new instance of [TimedTextSource](timedtextsource.md) with the specified default language from the provided URI.
## -parameters
### -param uri
The URI from which the timed text source is created.
### -param defaultLanguage
A string specifying the default language for the timed text source.
## -returns
The new timed text source.
## -remarks
## -examples
## -see-also
[CreateFromUri(Uri)](timedtextsource_createfromuri_407037831.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedTextSource.CreateFromUri(Windows.Foundation.Uri,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedTextSource.CreateFromUri
+
+## -description
+Creates a new instance of [TimedTextSource](timedtextsource.md) with the specified default language from the provided URI.
+
+## -parameters
+### -param uri
+The URI from which the timed text source is created.
+
+### -param defaultLanguage
+A string specifying the default language for the timed text source.
+
+## -returns
+The new timed text source.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateFromUri(Uri)](timedtextsource_createfromuri_407037831.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextsource_createfromuri_407037831.md b/windows.media.core/timedtextsource_createfromuri_407037831.md
index ae977fb643..dc87883c7a 100644
--- a/windows.media.core/timedtextsource_createfromuri_407037831.md
+++ b/windows.media.core/timedtextsource_createfromuri_407037831.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Core.TimedTextSource.CreateFromUri(Windows.Foundation.Uri)
--api-type: winrt method
----
# Windows.Media.Core.TimedTextSource.CreateFromUri
## -description
Creates a new instance of [TimedTextSource](timedtextsource.md) from the provided URI.
## -parameters
### -param uri
The URI from which the timed text source is created.
## -returns
The new timed text source.
## -remarks
## -examples
## -see-also
[CreateFromUri(Uri, String)](timedtextsource_createfromuri_1421797945.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedTextSource.CreateFromUri(Windows.Foundation.Uri)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedTextSource.CreateFromUri
+
+## -description
+Creates a new instance of [TimedTextSource](timedtextsource.md) from the provided URI.
+
+## -parameters
+### -param uri
+The URI from which the timed text source is created.
+
+## -returns
+The new timed text source.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateFromUri(Uri, String)](timedtextsource_createfromuri_1421797945.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextsource_resolved.md b/windows.media.core/timedtextsource_resolved.md
index 2c8bff744b..43fcf1c4c0 100644
--- a/windows.media.core/timedtextsource_resolved.md
+++ b/windows.media.core/timedtextsource_resolved.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.TimedTextSource.Resolved
--api-type: winrt event
----
# Windows.Media.Core.TimedTextSource.Resolved
## -description
Occurs when the [TimedTextSource](timedtextsource.md) is resolved.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.TimedTextSource.Resolved
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.TimedTextSource.Resolved
+
+## -description
+Occurs when the [TimedTextSource](timedtextsource.md) is resolved.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextsourceresolveresulteventargs.md b/windows.media.core/timedtextsourceresolveresulteventargs.md
index b3379e481f..831dcdc269 100644
--- a/windows.media.core/timedtextsourceresolveresulteventargs.md
+++ b/windows.media.core/timedtextsourceresolveresulteventargs.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.Core.TimedTextSourceResolveResultEventArgs
--api-type: winrt class
----
# Windows.Media.Core.TimedTextSourceResolveResultEventArgs
## -description
Provides data for the [TimedTextSource.Resolved](timedtextsource_resolved.md) event.
## -remarks
Get an instance of this class by handling the [TimedTextSource.Resolved](timedtextsource_resolved.md) event.
## -examples
## -see-also
[ITimedTextSourceResolveResultEventArgs](itimedtextsourceresolveresulteventargs.md), [TimedTextSource](timedtextsource.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.TimedTextSourceResolveResultEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.TimedTextSourceResolveResultEventArgs
+
+## -description
+Provides data for the [TimedTextSource.Resolved](timedtextsource_resolved.md) event.
+
+## -remarks
+Get an instance of this class by handling the [TimedTextSource.Resolved](timedtextsource_resolved.md) event.
+
+## -examples
+
+## -see-also
+[ITimedTextSourceResolveResultEventArgs](itimedtextsourceresolveresulteventargs.md), [TimedTextSource](timedtextsource.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextsourceresolveresulteventargs_error.md b/windows.media.core/timedtextsourceresolveresulteventargs_error.md
index 4308710d4b..7368ce02e9 100644
--- a/windows.media.core/timedtextsourceresolveresulteventargs_error.md
+++ b/windows.media.core/timedtextsourceresolveresulteventargs_error.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextSourceResolveResultEventArgs.Error
--api-type: winrt property
----
# Windows.Media.Core.TimedTextSourceResolveResultEventArgs.Error
## -description
Gets an object representing the asynchronous error that occurred when the [TimedTextSource](timedtextsource.md) was resolved.
## -property-value
An object representing the asynchronous error that occurred when the [TimedTextSource](timedtextsource.md) was resolved.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextSourceResolveResultEventArgs.Error
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextSourceResolveResultEventArgs.Error
+
+## -description
+Gets an object representing the asynchronous error that occurred when the [TimedTextSource](timedtextsource.md) was resolved.
+
+## -property-value
+An object representing the asynchronous error that occurred when the [TimedTextSource](timedtextsource.md) was resolved.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextsourceresolveresulteventargs_tracks.md b/windows.media.core/timedtextsourceresolveresulteventargs_tracks.md
index c0bdecf7b8..703ac10d04 100644
--- a/windows.media.core/timedtextsourceresolveresulteventargs_tracks.md
+++ b/windows.media.core/timedtextsourceresolveresulteventargs_tracks.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextSourceResolveResultEventArgs.Tracks
--api-type: winrt property
----
# Windows.Media.Core.TimedTextSourceResolveResultEventArgs.Tracks
## -description
Gets the list of [TimedMetadataTrack](timedmetadatatrack.md) objects resulting from resolving the [TimedTextSource](timedtextsource.md).
## -property-value
The list of [TimedMetadataTrack](timedmetadatatrack.md) objects.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextSourceResolveResultEventArgs.Tracks
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextSourceResolveResultEventArgs.Tracks
+
+## -description
+Gets the list of [TimedMetadataTrack](timedmetadatatrack.md) objects resulting from resolving the [TimedTextSource](timedtextsource.md).
+
+## -property-value
+The list of [TimedMetadataTrack](timedmetadatatrack.md) objects.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle.md b/windows.media.core/timedtextstyle.md
index e312bad6f0..e245c42455 100644
--- a/windows.media.core/timedtextstyle.md
+++ b/windows.media.core/timedtextstyle.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.TimedTextStyle
--api-type: winrt class
----
# Windows.Media.Core.TimedTextStyle
## -description
Defines the style of the rendered text in a [TimedTextCue](timedtextcue.md). You can set the style of a substring within a [TimedTextLine](timedtextline.md) by using the [Subformats](timedtextline_subformats.md) property.
## -remarks
## -examples
## -see-also
[ITimedTextStyle](itimedtextstyle.md), [TimedTextLine](timedtextline.md), [TimedTextLine::Subformats](timedtextline_subformats.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.TimedTextStyle
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle
+
+## -description
+Defines the style of the rendered text in a [TimedTextCue](timedtextcue.md). You can set the style of a substring within a [TimedTextLine](timedtextline.md) by using the [Subformats](timedtextline_subformats.md) property.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[ITimedTextStyle](itimedtextstyle.md), [TimedTextLine](timedtextline.md), [TimedTextLine::Subformats](timedtextline_subformats.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextstyle_background.md b/windows.media.core/timedtextstyle_background.md
index cc113746bb..e28c01cf2a 100644
--- a/windows.media.core/timedtextstyle_background.md
+++ b/windows.media.core/timedtextstyle_background.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.Background
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.Background
## -description
Gets or sets the background color of timed text.
## -property-value
The background color of timed text.
## -remarks
This **TimedTextStyle.Background** color is rendered behind character glyphs or spaces in timed text content. The [TimedTextRegion.Background](timedtextregion_background.md) color sets the color of the background of the container in which the timed text lines are rendered.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.Background
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.Background
+
+## -description
+Gets or sets the background color of timed text.
+
+## -property-value
+The background color of timed text.
+
+## -remarks
+This **TimedTextStyle.Background** color is rendered behind character glyphs or spaces in timed text content. The [TimedTextRegion.Background](timedtextregion_background.md) color sets the color of the background of the container in which the timed text lines are rendered.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_flowdirection.md b/windows.media.core/timedtextstyle_flowdirection.md
index b8b5617d86..7f0917a189 100644
--- a/windows.media.core/timedtextstyle_flowdirection.md
+++ b/windows.media.core/timedtextstyle_flowdirection.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.FlowDirection
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.FlowDirection
## -description
Gets or sets a value indicating the direction that timed text is flowed.
## -property-value
A value indicating the direction that the timed text is flows.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.FlowDirection
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.FlowDirection
+
+## -description
+Gets or sets a value indicating the direction that timed text is flowed.
+
+## -property-value
+A value indicating the direction that the timed text is flows.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_fontfamily.md b/windows.media.core/timedtextstyle_fontfamily.md
index 7baebbcad9..64ed85feea 100644
--- a/windows.media.core/timedtextstyle_fontfamily.md
+++ b/windows.media.core/timedtextstyle_fontfamily.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.FontFamily
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.FontFamily
## -description
Gets or sets the font family of timed text.
## -property-value
The font family of timed text.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.FontFamily
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.FontFamily
+
+## -description
+Gets or sets the font family of timed text.
+
+## -property-value
+The font family of timed text.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_fontsize.md b/windows.media.core/timedtextstyle_fontsize.md
index 942ab3f8a9..d64a59263b 100644
--- a/windows.media.core/timedtextstyle_fontsize.md
+++ b/windows.media.core/timedtextstyle_fontsize.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.FontSize
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.FontSize
## -description
Gets or sets the font size of timed text.
## -property-value
The font size of timed text.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.FontSize
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.FontSize
+
+## -description
+Gets or sets the font size of timed text.
+
+## -property-value
+The font size of timed text.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_fontweight.md b/windows.media.core/timedtextstyle_fontweight.md
index 4f41e5ad5c..0bb3b07798 100644
--- a/windows.media.core/timedtextstyle_fontweight.md
+++ b/windows.media.core/timedtextstyle_fontweight.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.FontWeight
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.FontWeight
## -description
Gets or sets the weight of timed text.
## -property-value
The weight of timed text.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.FontWeight
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.FontWeight
+
+## -description
+Gets or sets the weight of timed text.
+
+## -property-value
+The weight of timed text.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_foreground.md b/windows.media.core/timedtextstyle_foreground.md
index 49e2eb1590..4b4137bacd 100644
--- a/windows.media.core/timedtextstyle_foreground.md
+++ b/windows.media.core/timedtextstyle_foreground.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.Foreground
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.Foreground
## -description
Gets or sets the color of the timed text glyphs.
## -property-value
The color of the timed text glyphs.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.Foreground
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.Foreground
+
+## -description
+Gets or sets the color of the timed text glyphs.
+
+## -property-value
+The color of the timed text glyphs.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_isbackgroundalwaysshown.md b/windows.media.core/timedtextstyle_isbackgroundalwaysshown.md
index 3cd6693231..c474177af6 100644
--- a/windows.media.core/timedtextstyle_isbackgroundalwaysshown.md
+++ b/windows.media.core/timedtextstyle_isbackgroundalwaysshown.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.IsBackgroundAlwaysShown
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.IsBackgroundAlwaysShown
## -description
Gets or sets a value indicating if the background color stays visible when no text is being displayed.
## -property-value
A value indicating if the background color stays visible when no text is being displayed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.IsBackgroundAlwaysShown
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.IsBackgroundAlwaysShown
+
+## -description
+Gets or sets a value indicating if the background color stays visible when no text is being displayed.
+
+## -property-value
+A value indicating if the background color stays visible when no text is being displayed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_linealignment.md b/windows.media.core/timedtextstyle_linealignment.md
index 7b41b1bf6e..cc5abf66d0 100644
--- a/windows.media.core/timedtextstyle_linealignment.md
+++ b/windows.media.core/timedtextstyle_linealignment.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.LineAlignment
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.LineAlignment
## -description
Gets or sets the alignment of timed text lines.
## -property-value
The alignment of timed text lines.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.LineAlignment
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.LineAlignment
+
+## -description
+Gets or sets the alignment of timed text lines.
+
+## -property-value
+The alignment of timed text lines.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_name.md b/windows.media.core/timedtextstyle_name.md
index a76f440380..10a910a724 100644
--- a/windows.media.core/timedtextstyle_name.md
+++ b/windows.media.core/timedtextstyle_name.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.Name
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.Name
## -description
Gets or sets the name of the timed text style.
## -property-value
The name of the timed text style.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.Name
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.Name
+
+## -description
+Gets or sets the name of the timed text style.
+
+## -property-value
+The name of the timed text style.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_outlinecolor.md b/windows.media.core/timedtextstyle_outlinecolor.md
index 5d6955177e..d6a7241a0e 100644
--- a/windows.media.core/timedtextstyle_outlinecolor.md
+++ b/windows.media.core/timedtextstyle_outlinecolor.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.OutlineColor
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.OutlineColor
## -description
Gets or sets the outline color of timed text.
## -property-value
The outline color of timed text.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.OutlineColor
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.OutlineColor
+
+## -description
+Gets or sets the outline color of timed text.
+
+## -property-value
+The outline color of timed text.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_outlineradius.md b/windows.media.core/timedtextstyle_outlineradius.md
index d486d1df77..ba7ad58b3f 100644
--- a/windows.media.core/timedtextstyle_outlineradius.md
+++ b/windows.media.core/timedtextstyle_outlineradius.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.OutlineRadius
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.OutlineRadius
## -description
Gets or sets the radius of the blur applied to outline of the timed text.
## -property-value
The radius of the blur applied to outline of the timed text.
## -remarks
A value of zero results in no blurring of the text outline. Set the thickness of the outline with [OutlineThickness](timedtextstyle_outlinethickness.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.OutlineRadius
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.OutlineRadius
+
+## -description
+Gets or sets the radius of the blur applied to outline of the timed text.
+
+## -property-value
+The radius of the blur applied to outline of the timed text.
+
+## -remarks
+A value of zero results in no blurring of the text outline. Set the thickness of the outline with [OutlineThickness](timedtextstyle_outlinethickness.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_outlinethickness.md b/windows.media.core/timedtextstyle_outlinethickness.md
index ab26d53c5e..528ac3701a 100644
--- a/windows.media.core/timedtextstyle_outlinethickness.md
+++ b/windows.media.core/timedtextstyle_outlinethickness.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextStyle.OutlineThickness
--api-type: winrt property
----
# Windows.Media.Core.TimedTextStyle.OutlineThickness
## -description
Gets or sets the thickness of the outline of the timed text.
## -property-value
The thickness of the outline of the timed text.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextStyle.OutlineThickness
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.OutlineThickness
+
+## -description
+Gets or sets the thickness of the outline of the timed text.
+
+## -property-value
+The thickness of the outline of the timed text.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextstyle_timedtextstyle_1221375020.md b/windows.media.core/timedtextstyle_timedtextstyle_1221375020.md
index 64683254b1..9f9b221489 100644
--- a/windows.media.core/timedtextstyle_timedtextstyle_1221375020.md
+++ b/windows.media.core/timedtextstyle_timedtextstyle_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.TimedTextStyle.#ctor
--api-type: winrt method
----
# Windows.Media.Core.TimedTextStyle.TimedTextStyle
## -description
Initializes a new instance of the [TimedTextStyle](timedtextstyle.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedTextStyle.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedTextStyle.TimedTextStyle
+
+## -description
+Initializes a new instance of the [TimedTextStyle](timedtextstyle.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextsubformat.md b/windows.media.core/timedtextsubformat.md
index eb1c517019..0fe92ce03e 100644
--- a/windows.media.core/timedtextsubformat.md
+++ b/windows.media.core/timedtextsubformat.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.TimedTextSubformat
--api-type: winrt class
----
# Windows.Media.Core.TimedTextSubformat
## -description
Defines a [TimedTextStyle](timedtextstyle.md) for a substring in a [TimedTextLine](timedtextline.md). of the cue, which defines the style of the rendered text.
## -remarks
## -examples
## -see-also
[ITimedTextSubformat](itimedtextsubformat.md), [TimedTextLine](timedtextline.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.TimedTextSubformat
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.TimedTextSubformat
+
+## -description
+Defines a [TimedTextStyle](timedtextstyle.md) for a substring in a [TimedTextLine](timedtextline.md). of the cue, which defines the style of the rendered text.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[ITimedTextSubformat](itimedtextsubformat.md), [TimedTextLine](timedtextline.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextsubformat_length.md b/windows.media.core/timedtextsubformat_length.md
index e1dabeaf5b..33985fa1fc 100644
--- a/windows.media.core/timedtextsubformat_length.md
+++ b/windows.media.core/timedtextsubformat_length.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextSubformat.Length
--api-type: winrt property
----
# Windows.Media.Core.TimedTextSubformat.Length
## -description
Gets or sets the length of the substring to which the [SubformatStyle](timedtextsubformat_subformatstyle.md) applies.
## -property-value
The length of the substring to which the formatting style applies.
## -remarks
## -examples
## -see-also
[SubformatStyle](timedtextsubformat_subformatstyle.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextSubformat.Length
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextSubformat.Length
+
+## -description
+Gets or sets the length of the substring to which the [SubformatStyle](timedtextsubformat_subformatstyle.md) applies.
+
+## -property-value
+The length of the substring to which the formatting style applies.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[SubformatStyle](timedtextsubformat_subformatstyle.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextsubformat_startindex.md b/windows.media.core/timedtextsubformat_startindex.md
index 44465f6934..a7714a5c68 100644
--- a/windows.media.core/timedtextsubformat_startindex.md
+++ b/windows.media.core/timedtextsubformat_startindex.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.TimedTextSubformat.StartIndex
--api-type: winrt property
----
# Windows.Media.Core.TimedTextSubformat.StartIndex
## -description
Gets or sets the staring index of the substring to which the [SubformatStyle](timedtextsubformat_subformatstyle.md) applies.
## -property-value
The starting index of the substring to which the formatting style applies.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextSubformat.StartIndex
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextSubformat.StartIndex
+
+## -description
+Gets or sets the staring index of the substring to which the [SubformatStyle](timedtextsubformat_subformatstyle.md) applies.
+
+## -property-value
+The starting index of the substring to which the formatting style applies.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/timedtextsubformat_subformatstyle.md b/windows.media.core/timedtextsubformat_subformatstyle.md
index 2d75515d3a..c4c782e090 100644
--- a/windows.media.core/timedtextsubformat_subformatstyle.md
+++ b/windows.media.core/timedtextsubformat_subformatstyle.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.TimedTextSubformat.SubformatStyle
--api-type: winrt property
----
# Windows.Media.Core.TimedTextSubformat.SubformatStyle
## -description
Gets or sets the [TimedTextStyle](timedtextstyle.md) object that conveys the formatting of a substring in a [TimedTextLine](timedtextline.md).
## -property-value
The object that conveys the formatting of a substring in a [TimedTextLine](timedtextline.md).
## -remarks
## -examples
## -see-also
[TimedTextStyle](timedtextstyle.md), [TimedTextLine](timedtextline.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.TimedTextSubformat.SubformatStyle
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.TimedTextSubformat.SubformatStyle
+
+## -description
+Gets or sets the [TimedTextStyle](timedtextstyle.md) object that conveys the formatting of a substring in a [TimedTextLine](timedtextline.md).
+
+## -property-value
+The object that conveys the formatting of a substring in a [TimedTextLine](timedtextline.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
+[TimedTextStyle](timedtextstyle.md), [TimedTextLine](timedtextline.md)
\ No newline at end of file
diff --git a/windows.media.core/timedtextsubformat_timedtextsubformat_1221375020.md b/windows.media.core/timedtextsubformat_timedtextsubformat_1221375020.md
index f21ddfd619..6a82ca675e 100644
--- a/windows.media.core/timedtextsubformat_timedtextsubformat_1221375020.md
+++ b/windows.media.core/timedtextsubformat_timedtextsubformat_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.TimedTextSubformat.#ctor
--api-type: winrt method
----
# Windows.Media.Core.TimedTextSubformat.TimedTextSubformat
## -description
Initializes a new instance of the [TimedTextSubformat](timedtextsubformat.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.TimedTextSubformat.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.TimedTextSubformat.TimedTextSubformat
+
+## -description
+Initializes a new instance of the [TimedTextSubformat](timedtextsubformat.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostabilizationeffect.md b/windows.media.core/videostabilizationeffect.md
index 61a9bbfba9..b8c22c0c62 100644
--- a/windows.media.core/videostabilizationeffect.md
+++ b/windows.media.core/videostabilizationeffect.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.VideoStabilizationEffect
--api-type: winrt class
----
# Windows.Media.Core.VideoStabilizationEffect
## -description
Represents an effect that stabilizes a video stream.
## -remarks
Get an instance of this class by passing a [VideoStabilizationEffectDefinition](videostabilizationeffectdefinition.md) object into [MediaCapture.AddVideoEffectAsync](../windows.media.capture/mediacapture_addvideoeffectasync.md) or [MediaTranscoder.AddVideoEffect](../windows.media.transcoding/mediatranscoder_addvideoeffect.md).
For how-to guidance for using the **VideoStabilizationEffect**, see [Effects for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/effects-for-video-capture).
## -examples
## -see-also
[IMediaExtension](../windows.media/imediaextension.md), [Effects for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/effects-for-video-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.VideoStabilizationEffect
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffect
+
+## -description
+Represents an effect that stabilizes a video stream.
+
+## -remarks
+Get an instance of this class by passing a [VideoStabilizationEffectDefinition](videostabilizationeffectdefinition.md) object into [MediaCapture.AddVideoEffectAsync](../windows.media.capture/mediacapture_addvideoeffectasync.md) or [MediaTranscoder.AddVideoEffect](../windows.media.transcoding/mediatranscoder_addvideoeffect.md).
+
+For how-to guidance for using the **VideoStabilizationEffect**, see [Effects for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/effects-for-video-capture).
+
+## -examples
+
+## -see-also
+[IMediaExtension](../windows.media/imediaextension.md), [Effects for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/effects-for-video-capture)
\ No newline at end of file
diff --git a/windows.media.core/videostabilizationeffect_enabled.md b/windows.media.core/videostabilizationeffect_enabled.md
index 583d5be83c..df5b5a8d19 100644
--- a/windows.media.core/videostabilizationeffect_enabled.md
+++ b/windows.media.core/videostabilizationeffect_enabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoStabilizationEffect.Enabled
--api-type: winrt property
----
# Windows.Media.Core.VideoStabilizationEffect.Enabled
## -description
Gets or sets a value indicating whether video stabilization is enabled.
## -property-value
True if video stabilization is enabled; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoStabilizationEffect.Enabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffect.Enabled
+
+## -description
+Gets or sets a value indicating whether video stabilization is enabled.
+
+## -property-value
+True if video stabilization is enabled; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostabilizationeffect_enabledchanged.md b/windows.media.core/videostabilizationeffect_enabledchanged.md
index 7ad0697a5e..19731720f4 100644
--- a/windows.media.core/videostabilizationeffect_enabledchanged.md
+++ b/windows.media.core/videostabilizationeffect_enabledchanged.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Core.VideoStabilizationEffect.EnabledChanged
--api-type: winrt event
----
# Windows.Media.Core.VideoStabilizationEffect.EnabledChanged
## -description
Occurs when the value of the [VideoStabilizationEffect::Enabled](videostabilizationeffect_enabled.md) property changes.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.VideoStabilizationEffect.EnabledChanged
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffect.EnabledChanged
+
+## -description
+Occurs when the value of the [VideoStabilizationEffect::Enabled](videostabilizationeffect_enabled.md) property changes.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostabilizationeffect_getrecommendedstreamconfiguration_282764984.md b/windows.media.core/videostabilizationeffect_getrecommendedstreamconfiguration_282764984.md
index e9b95a7d80..06801a45b3 100644
--- a/windows.media.core/videostabilizationeffect_getrecommendedstreamconfiguration_282764984.md
+++ b/windows.media.core/videostabilizationeffect_getrecommendedstreamconfiguration_282764984.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.Core.VideoStabilizationEffect.GetRecommendedStreamConfiguration(Windows.Media.Devices.VideoDeviceController,Windows.Media.MediaProperties.VideoEncodingProperties)
--api-type: winrt method
----
# Windows.Media.Core.VideoStabilizationEffect.GetRecommendedStreamConfiguration
## -description
Gets the recommended video stream configuration for video stabilization, given the specified video device controller and encoding properties.
## -parameters
### -param controller
The video device controller.
### -param desiredProperties
The encoding properties.
## -returns
An object representing the optimal video stream configuration for video stabilization.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.VideoStabilizationEffect.GetRecommendedStreamConfiguration(Windows.Media.Devices.VideoDeviceController,Windows.Media.MediaProperties.VideoEncodingProperties)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffect.GetRecommendedStreamConfiguration
+
+## -description
+Gets the recommended video stream configuration for video stabilization, given the specified video device controller and encoding properties.
+
+## -parameters
+### -param controller
+The video device controller.
+
+### -param desiredProperties
+The encoding properties.
+
+## -returns
+An object representing the optimal video stream configuration for video stabilization.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostabilizationeffect_setproperties_518979560.md b/windows.media.core/videostabilizationeffect_setproperties_518979560.md
index e0fa97ed37..ddd99c5f64 100644
--- a/windows.media.core/videostabilizationeffect_setproperties_518979560.md
+++ b/windows.media.core/videostabilizationeffect_setproperties_518979560.md
@@ -1,3 +1,24 @@
----
-api-id: M:Windows.Media.Core.VideoStabilizationEffect.SetProperties(Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.Core.VideoStabilizationEffect.SetProperties
## -description
Sets properties on the [IMediaExtension](../windows.media/imediaextension.md).
## -parameters
### -param configuration
The property set.
## -remarks
This method is inherited from the [IMediaExtension](../windows.media/imediaextension.md) interface and is not intended to be used from your code. Instead, set the properties of the [VideoStabilizationEffect](videostabilizationeffect.md) directly.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.VideoStabilizationEffect.SetProperties(Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffect.SetProperties
+
+## -description
+Sets properties on the [IMediaExtension](../windows.media/imediaextension.md).
+
+## -parameters
+### -param configuration
+The property set.
+
+## -remarks
+This method is inherited from the [IMediaExtension](../windows.media/imediaextension.md) interface and is not intended to be used from your code. Instead, set the properties of the [VideoStabilizationEffect](videostabilizationeffect.md) directly.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostabilizationeffectdefinition.md b/windows.media.core/videostabilizationeffectdefinition.md
index b476de4825..6240c4200a 100644
--- a/windows.media.core/videostabilizationeffectdefinition.md
+++ b/windows.media.core/videostabilizationeffectdefinition.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.VideoStabilizationEffectDefinition
--api-type: winrt class
----
# Windows.Media.Core.VideoStabilizationEffectDefinition
## -description
Represents the definition of a video stabilization effect.
## -remarks
## -examples
## -see-also
[IVideoEffectDefinition](../windows.media.effects/ivideoeffectdefinition.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.VideoStabilizationEffectDefinition
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffectDefinition
+
+## -description
+Represents the definition of a video stabilization effect.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[IVideoEffectDefinition](../windows.media.effects/ivideoeffectdefinition.md)
\ No newline at end of file
diff --git a/windows.media.core/videostabilizationeffectdefinition_activatableclassid.md b/windows.media.core/videostabilizationeffectdefinition_activatableclassid.md
index eed3d0f2cf..a95e5a15dd 100644
--- a/windows.media.core/videostabilizationeffectdefinition_activatableclassid.md
+++ b/windows.media.core/videostabilizationeffectdefinition_activatableclassid.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoStabilizationEffectDefinition.ActivatableClassId
--api-type: winrt property
----
# Windows.Media.Core.VideoStabilizationEffectDefinition.ActivatableClassId
## -description
Gets a string containing the activatable class ID of the video stabilization effect definition.
## -property-value
The activatable class ID of the video stabilization detection effect definition
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoStabilizationEffectDefinition.ActivatableClassId
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffectDefinition.ActivatableClassId
+
+## -description
+Gets a string containing the activatable class ID of the video stabilization effect definition.
+
+## -property-value
+The activatable class ID of the video stabilization detection effect definition
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostabilizationeffectdefinition_properties.md b/windows.media.core/videostabilizationeffectdefinition_properties.md
index 60d3a11bea..a9d683808a 100644
--- a/windows.media.core/videostabilizationeffectdefinition_properties.md
+++ b/windows.media.core/videostabilizationeffectdefinition_properties.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoStabilizationEffectDefinition.Properties
--api-type: winrt property
----
# Windows.Media.Core.VideoStabilizationEffectDefinition.Properties
## -description
Gets the set of properties for configuring the [VideoStabilizationEffectDefinition](videostabilizationeffectdefinition.md) object.
## -property-value
The set of properties for configuring the [VideoStabilizationEffectDefinition](videostabilizationeffectdefinition.md) object.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoStabilizationEffectDefinition.Properties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffectDefinition.Properties
+
+## -description
+Gets the set of properties for configuring the [VideoStabilizationEffectDefinition](videostabilizationeffectdefinition.md) object.
+
+## -property-value
+The set of properties for configuring the [VideoStabilizationEffectDefinition](videostabilizationeffectdefinition.md) object.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostabilizationeffectdefinition_videostabilizationeffectdefinition_1221375020.md b/windows.media.core/videostabilizationeffectdefinition_videostabilizationeffectdefinition_1221375020.md
index c304a5ea89..d0f07ec819 100644
--- a/windows.media.core/videostabilizationeffectdefinition_videostabilizationeffectdefinition_1221375020.md
+++ b/windows.media.core/videostabilizationeffectdefinition_videostabilizationeffectdefinition_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Core.VideoStabilizationEffectDefinition.#ctor
--api-type: winrt method
----
# Windows.Media.Core.VideoStabilizationEffectDefinition.VideoStabilizationEffectDefinition
## -description
Initializes a new instance of the [VideoStabilizationEffectDefinition](videostabilizationeffectdefinition.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.VideoStabilizationEffectDefinition.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffectDefinition.VideoStabilizationEffectDefinition
+
+## -description
+Initializes a new instance of the [VideoStabilizationEffectDefinition](videostabilizationeffectdefinition.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostabilizationeffectenabledchangedeventargs.md b/windows.media.core/videostabilizationeffectenabledchangedeventargs.md
index f4663b322e..1204a700e9 100644
--- a/windows.media.core/videostabilizationeffectenabledchangedeventargs.md
+++ b/windows.media.core/videostabilizationeffectenabledchangedeventargs.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.Core.VideoStabilizationEffectEnabledChangedEventArgs
--api-type: winrt class
----
# Windows.Media.Core.VideoStabilizationEffectEnabledChangedEventArgs
## -description
Provides data for the [VideoStabilizationEffect.EnabledChanged](videostabilizationeffect_enabledchanged.md) event.
## -remarks
Get an instance of this by handling the [VideoStabilizationEffect.EnabledChanged](videostabilizationeffect_enabledchanged.md) event.
## -examples
## -see-also
[VideoStabilizationEffect.EnabledChanged](videostabilizationeffect_enabledchanged.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.VideoStabilizationEffectEnabledChangedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffectEnabledChangedEventArgs
+
+## -description
+Provides data for the [VideoStabilizationEffect.EnabledChanged](videostabilizationeffect_enabledchanged.md) event.
+
+## -remarks
+Get an instance of this by handling the [VideoStabilizationEffect.EnabledChanged](videostabilizationeffect_enabledchanged.md) event.
+
+## -examples
+
+## -see-also
+[VideoStabilizationEffect.EnabledChanged](videostabilizationeffect_enabledchanged.md)
\ No newline at end of file
diff --git a/windows.media.core/videostabilizationeffectenabledchangedeventargs_reason.md b/windows.media.core/videostabilizationeffectenabledchangedeventargs_reason.md
index 033cbdba5d..b3927147a5 100644
--- a/windows.media.core/videostabilizationeffectenabledchangedeventargs_reason.md
+++ b/windows.media.core/videostabilizationeffectenabledchangedeventargs_reason.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoStabilizationEffectEnabledChangedEventArgs.Reason
--api-type: winrt property
----
# Windows.Media.Core.VideoStabilizationEffectEnabledChangedEventArgs.Reason
## -description
Gets a value indicating the reason why the [VideoStabilizationEffect::Enabled](videostabilizationeffect_enabled.md) property changed.
## -property-value
A value indicating the reason why the [VideoStabilizationEffect::Enabled](videostabilizationeffect_enabled.md) property changed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoStabilizationEffectEnabledChangedEventArgs.Reason
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoStabilizationEffectEnabledChangedEventArgs.Reason
+
+## -description
+Gets a value indicating the reason why the [VideoStabilizationEffect::Enabled](videostabilizationeffect_enabled.md) property changed.
+
+## -property-value
+A value indicating the reason why the [VideoStabilizationEffect::Enabled](videostabilizationeffect_enabled.md) property changed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostreamdescriptor.md b/windows.media.core/videostreamdescriptor.md
index ceffcf9880..ce6616d8d1 100644
--- a/windows.media.core/videostreamdescriptor.md
+++ b/windows.media.core/videostreamdescriptor.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.Core.VideoStreamDescriptor
--api-type: winrt class
----
# Windows.Media.Core.VideoStreamDescriptor
## -description
Defines an video media stream.
## -remarks
See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
## -examples
## -see-also
[IMediaStreamDescriptor](imediastreamdescriptor.md), [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.VideoStreamDescriptor
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.VideoStreamDescriptor
+
+## -description
+Defines an video media stream.
+
+## -remarks
+See the [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021) for an example of using Media Stream Source in a Windows Store app.
+
+## -examples
+
+## -see-also
+[IMediaStreamDescriptor](imediastreamdescriptor.md), [MediaStreamSource Sample](http://go.microsoft.com/fwlink/p/?LinkID=309021)
\ No newline at end of file
diff --git a/windows.media.core/videostreamdescriptor_encodingproperties.md b/windows.media.core/videostreamdescriptor_encodingproperties.md
index 14f52e4f72..ee4bb0441e 100644
--- a/windows.media.core/videostreamdescriptor_encodingproperties.md
+++ b/windows.media.core/videostreamdescriptor_encodingproperties.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.VideoStreamDescriptor.EncodingProperties
--api-type: winrt property
----
# Windows.Media.Core.VideoStreamDescriptor.EncodingProperties
## -description
Gets the encoding properties on the video stream.
## -property-value
The encoding properties on the video stream.
## -remarks
If the media pipeline cannot handle the new encoding properties, the [MediaStreamSource](mediastreamsource.md) will raise the [Closed](mediastreamsource_closed.md) event which provides information regarding the error.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoStreamDescriptor.EncodingProperties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoStreamDescriptor.EncodingProperties
+
+## -description
+Gets the encoding properties on the video stream.
+
+## -property-value
+The encoding properties on the video stream.
+
+## -remarks
+If the media pipeline cannot handle the new encoding properties, the [MediaStreamSource](mediastreamsource.md) will raise the [Closed](mediastreamsource_closed.md) event which provides information regarding the error.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostreamdescriptor_isselected.md b/windows.media.core/videostreamdescriptor_isselected.md
index a4930adfe8..39ad5b3abd 100644
--- a/windows.media.core/videostreamdescriptor_isselected.md
+++ b/windows.media.core/videostreamdescriptor_isselected.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Media.Core.VideoStreamDescriptor.IsSelected
--api-type: winrt property
----
# Windows.Media.Core.VideoStreamDescriptor.IsSelected
## -description
Specifies whether the stream is currently in use by the [MediaStreamSource](mediastreamsource.md).
## -property-value
**true** if the stream is currently in use by the [MediaStreamSource](mediastreamsource.md); otherwise, **false**.
## -remarks
[IsSelected](videostreamdescriptor_isselected.md) is **true** if the stream represented by the stream descriptor is currently selected by the media pipeline. For example, if it is currently in use by the [MediaStreamSource](mediastreamsource.md). Otherwise, the value is **false**.
The [MediaStreamSource](mediastreamsource.md) only raises the [SampleRequested](mediastreamsource_samplerequested.md) event for streams which are selected.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoStreamDescriptor.IsSelected
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoStreamDescriptor.IsSelected
+
+## -description
+Specifies whether the stream is currently in use by the [MediaStreamSource](mediastreamsource.md).
+
+## -property-value
+**true** if the stream is currently in use by the [MediaStreamSource](mediastreamsource.md); otherwise, **false**.
+
+## -remarks
+[IsSelected](videostreamdescriptor_isselected.md) is **true** if the stream represented by the stream descriptor is currently selected by the media pipeline. For example, if it is currently in use by the [MediaStreamSource](mediastreamsource.md). Otherwise, the value is **false**.
+
+The [MediaStreamSource](mediastreamsource.md) only raises the [SampleRequested](mediastreamsource_samplerequested.md) event for streams which are selected.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostreamdescriptor_language.md b/windows.media.core/videostreamdescriptor_language.md
index 0e0fb326c5..71d78d7582 100644
--- a/windows.media.core/videostreamdescriptor_language.md
+++ b/windows.media.core/videostreamdescriptor_language.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Media.Core.VideoStreamDescriptor.Language
--api-type: winrt property
----
# Windows.Media.Core.VideoStreamDescriptor.Language
## -description
Gets or sets the RFC-1766 language code for the stream.
## -property-value
The RFC-1766 language code for the stream.
## -remarks
The initial value is an empty string.
The language is specified using a RFC-1766 language code, for example, “en-US”.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoStreamDescriptor.Language
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoStreamDescriptor.Language
+
+## -description
+Gets or sets the RFC-1766 language code for the stream.
+
+## -property-value
+The RFC-1766 language code for the stream.
+
+## -remarks
+The initial value is an empty string.
+
+The language is specified using a RFC-1766 language code, for example, “en-US”.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostreamdescriptor_name.md b/windows.media.core/videostreamdescriptor_name.md
index 184669681e..7dc430bf38 100644
--- a/windows.media.core/videostreamdescriptor_name.md
+++ b/windows.media.core/videostreamdescriptor_name.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Media.Core.VideoStreamDescriptor.Name
--api-type: winrt property
----
# Windows.Media.Core.VideoStreamDescriptor.Name
## -description
Gets or sets the name of the stream.
## -property-value
The name of the stream.
## -remarks
The initial value is an empty string.
The name is a free-form human readable string that describes the stream, for example, “English soundtrack”.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoStreamDescriptor.Name
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoStreamDescriptor.Name
+
+## -description
+Gets or sets the name of the stream.
+
+## -property-value
+The name of the stream.
+
+## -remarks
+The initial value is an empty string.
+
+The name is a free-form human readable string that describes the stream, for example, “English soundtrack”.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videostreamdescriptor_videostreamdescriptor_1148948100.md b/windows.media.core/videostreamdescriptor_videostreamdescriptor_1148948100.md
index 734c141b7c..8788e4688f 100644
--- a/windows.media.core/videostreamdescriptor_videostreamdescriptor_1148948100.md
+++ b/windows.media.core/videostreamdescriptor_videostreamdescriptor_1148948100.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Core.VideoStreamDescriptor.#ctor(Windows.Media.MediaProperties.VideoEncodingProperties)
--api-type: winrt method
----
# Windows.Media.Core.VideoStreamDescriptor.VideoStreamDescriptor
## -description
Creates an instance of the [VideoEncodingProperties](../windows.media.mediaproperties/videoencodingproperties.md) class using the specified video encoding.
## -parameters
### -param encodingProperties
The encoding properties for the video stream.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.VideoStreamDescriptor.#ctor(Windows.Media.MediaProperties.VideoEncodingProperties)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.VideoStreamDescriptor.VideoStreamDescriptor
+
+## -description
+Creates an instance of the [VideoEncodingProperties](../windows.media.mediaproperties/videoencodingproperties.md) class using the specified video encoding.
+
+## -parameters
+### -param encodingProperties
+The encoding properties for the video stream.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrack.md b/windows.media.core/videotrack.md
index 53ec695695..04d8e20433 100644
--- a/windows.media.core/videotrack.md
+++ b/windows.media.core/videotrack.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Core.VideoTrack
--api-type: winrt class
----
# Windows.Media.Core.VideoTrack
## -description
Represents a video track.
## -remarks
Get an instance of this class by calling [MediaPlaybackVideoTrackList.GetAt](../windows.media.playback/mediaplaybackvideotracklist_getat.md).
For how-to guidance for working with **VideoTrack** objects, see [Media items, playlists, and tracks](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback-with-mediasource).
## -examples
## -see-also
[IMediaTrack](imediatrack.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.VideoTrack
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.VideoTrack
+
+## -description
+Represents a video track.
+
+## -remarks
+Get an instance of this class by calling [MediaPlaybackVideoTrackList.GetAt](../windows.media.playback/mediaplaybackvideotracklist_getat.md).
+
+For how-to guidance for working with **VideoTrack** objects, see [Media items, playlists, and tracks](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/media-playback-with-mediasource).
+
+## -examples
+
+## -see-also
+[IMediaTrack](imediatrack.md)
\ No newline at end of file
diff --git a/windows.media.core/videotrack_getencodingproperties_1326279402.md b/windows.media.core/videotrack_getencodingproperties_1326279402.md
index 662c5aa9a9..c9eb5f5667 100644
--- a/windows.media.core/videotrack_getencodingproperties_1326279402.md
+++ b/windows.media.core/videotrack_getencodingproperties_1326279402.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Core.VideoTrack.GetEncodingProperties
--api-type: winrt method
----
# Windows.Media.Core.VideoTrack.GetEncodingProperties
## -description
Gets the encoding properties for the [VideoTrack](videotrack.md).
## -returns
The encoding properties for the [VideoTrack](videotrack.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Core.VideoTrack.GetEncodingProperties
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Core.VideoTrack.GetEncodingProperties
+
+## -description
+Gets the encoding properties for the [VideoTrack](videotrack.md).
+
+## -returns
+The encoding properties for the [VideoTrack](videotrack.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrack_id.md b/windows.media.core/videotrack_id.md
index 06cac97c47..597e214b0d 100644
--- a/windows.media.core/videotrack_id.md
+++ b/windows.media.core/videotrack_id.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoTrack.Id
--api-type: winrt property
----
# Windows.Media.Core.VideoTrack.Id
## -description
Gets or sets the identifier for the video track.
## -property-value
The identifier for the video track.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoTrack.Id
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoTrack.Id
+
+## -description
+Gets or sets the identifier for the video track.
+
+## -property-value
+The identifier for the video track.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrack_label.md b/windows.media.core/videotrack_label.md
index f2bfe59f51..4acdd3937a 100644
--- a/windows.media.core/videotrack_label.md
+++ b/windows.media.core/videotrack_label.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoTrack.Label
--api-type: winrt property
----
# Windows.Media.Core.VideoTrack.Label
## -description
Gets or sets the label for the video track.
## -property-value
The label for the video track.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoTrack.Label
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoTrack.Label
+
+## -description
+Gets or sets the label for the video track.
+
+## -property-value
+The label for the video track.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrack_language.md b/windows.media.core/videotrack_language.md
index 0ee92e1785..a7abb88dc7 100644
--- a/windows.media.core/videotrack_language.md
+++ b/windows.media.core/videotrack_language.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoTrack.Language
--api-type: winrt property
----
# Windows.Media.Core.VideoTrack.Language
## -description
Gets or sets a string indicating the language of the video track.
## -property-value
A string indicating the language of the video track.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoTrack.Language
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoTrack.Language
+
+## -description
+Gets or sets a string indicating the language of the video track.
+
+## -property-value
+A string indicating the language of the video track.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrack_name.md b/windows.media.core/videotrack_name.md
index 8120117e6b..e7abeb7d45 100644
--- a/windows.media.core/videotrack_name.md
+++ b/windows.media.core/videotrack_name.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoTrack.Name
--api-type: winrt property
----
# Windows.Media.Core.VideoTrack.Name
## -description
Gets the name of the [VideoTrack](videotrack.md).
## -property-value
The name of the [VideoTrack](videotrack.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoTrack.Name
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoTrack.Name
+
+## -description
+Gets the name of the [VideoTrack](videotrack.md).
+
+## -property-value
+The name of the [VideoTrack](videotrack.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrack_openfailed.md b/windows.media.core/videotrack_openfailed.md
index d5183cdd24..5de4b6f296 100644
--- a/windows.media.core/videotrack_openfailed.md
+++ b/windows.media.core/videotrack_openfailed.md
@@ -1,3 +1,20 @@
----
-api-id: E:Windows.Media.Core.VideoTrack.OpenFailed
--api-type: winrt event
----
# Windows.Media.Core.VideoTrack.OpenFailed
## -description
Occurs when a [VideoTrack](videotrack.md) fails to open.
## -remarks
Register for the **OpenFailed** event for a [VideoTrack](videotrack.md) from within the [VideoTracksChanged](../windows.media.playback/mediaplaybackitem_videotrackschanged.md) event handler for a [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md), which is raised whenever a video track is added to the item.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Core.VideoTrack.OpenFailed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Core.VideoTrack.OpenFailed
+
+## -description
+Occurs when a [VideoTrack](videotrack.md) fails to open.
+
+## -remarks
+Register for the **OpenFailed** event for a [VideoTrack](videotrack.md) from within the [VideoTracksChanged](../windows.media.playback/mediaplaybackitem_videotrackschanged.md) event handler for a [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md), which is raised whenever a video track is added to the item.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrack_playbackitem.md b/windows.media.core/videotrack_playbackitem.md
index ffb48bee76..97f240164e 100644
--- a/windows.media.core/videotrack_playbackitem.md
+++ b/windows.media.core/videotrack_playbackitem.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.VideoTrack.PlaybackItem
--api-type: winrt property
----
# Windows.Media.Core.VideoTrack.PlaybackItem
## -description
Gets the [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) containing the [VideoTrack](videotrack.md).
## -property-value
The [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) containing the [VideoTrack](videotrack.md).
## -remarks
A [VideoTrack](videotrack.md) is contained by a [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) when it is in the item's [VideoTracks](../windows.media.playback/mediaplaybackitem_videotracks.md) collection. Use the **PlaybackItem** property to get a reference to the **MediaPlaybackItem** that contains the **VideoTrack**.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoTrack.PlaybackItem
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoTrack.PlaybackItem
+
+## -description
+Gets the [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) containing the [VideoTrack](videotrack.md).
+
+## -property-value
+The [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) containing the [VideoTrack](videotrack.md).
+
+## -remarks
+A [VideoTrack](videotrack.md) is contained by a [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) when it is in the item's [VideoTracks](../windows.media.playback/mediaplaybackitem_videotracks.md) collection. Use the **PlaybackItem** property to get a reference to the **MediaPlaybackItem** that contains the **VideoTrack**.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrack_supportinfo.md b/windows.media.core/videotrack_supportinfo.md
index d3c3ade433..63b0ec2acb 100644
--- a/windows.media.core/videotrack_supportinfo.md
+++ b/windows.media.core/videotrack_supportinfo.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Core.VideoTrack.SupportInfo
--api-type: winrt property
----
# Windows.Media.Core.VideoTrack.SupportInfo
## -description
Gets support information for the [VideoTrack](videotrack.md). This information includes the status of the video decoder, information about any audio degradation applied by the decoder, and the status of the [MediaSource](mediasource.md) with which the video track is associated.
## -property-value
The support information for the [VideoTrack](videotrack.md).
## -remarks
If a failure occurs when a [VideoTrack](videotrack.md) is opened, you can get detailed status and failure information by handling the [OpenFailed](videotrack_openfailed.md) event and checking the **SupportInfo** property of the **VideoTrack** passed into the event as the sender.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoTrack.SupportInfo
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoTrack.SupportInfo
+
+## -description
+Gets support information for the [VideoTrack](videotrack.md). This information includes the status of the video decoder, information about any audio degradation applied by the decoder, and the status of the [MediaSource](mediasource.md) with which the video track is associated.
+
+## -property-value
+The support information for the [VideoTrack](videotrack.md).
+
+## -remarks
+If a failure occurs when a [VideoTrack](videotrack.md) is opened, you can get detailed status and failure information by handling the [OpenFailed](videotrack_openfailed.md) event and checking the **SupportInfo** property of the **VideoTrack** passed into the event as the sender.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrack_trackkind.md b/windows.media.core/videotrack_trackkind.md
index 722a358943..b66ad14af4 100644
--- a/windows.media.core/videotrack_trackkind.md
+++ b/windows.media.core/videotrack_trackkind.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoTrack.TrackKind
--api-type: winrt property
----
# Windows.Media.Core.VideoTrack.TrackKind
## -description
Gets a value indicating the type of data the track contains. For [VideoTrack](videotrack.md) objects, this value is always [MediaTrackKind::Video](mediatrackkind.md).
## -property-value
A value indicating the type of data the track contains.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoTrack.TrackKind
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoTrack.TrackKind
+
+## -description
+Gets a value indicating the type of data the track contains. For [VideoTrack](videotrack.md) objects, this value is always [MediaTrackKind::Video](mediatrackkind.md).
+
+## -property-value
+A value indicating the type of data the track contains.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrackopenfailedeventargs.md b/windows.media.core/videotrackopenfailedeventargs.md
index 266864327a..28d8d62c59 100644
--- a/windows.media.core/videotrackopenfailedeventargs.md
+++ b/windows.media.core/videotrackopenfailedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.VideoTrackOpenFailedEventArgs
--api-type: winrt class
----
# Windows.Media.Core.VideoTrackOpenFailedEventArgs
## -description
Provides data for the [OpenFailed](videotrack_openfailed.md) event of a [VideoTrack](videotrack.md).
## -remarks
Get an instance of this class by handling the [OpenFailed](videotrack_openfailed.md) event of a [VideoTrack](videotrack.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.VideoTrackOpenFailedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.VideoTrackOpenFailedEventArgs
+
+## -description
+Provides data for the [OpenFailed](videotrack_openfailed.md) event of a [VideoTrack](videotrack.md).
+
+## -remarks
+Get an instance of this class by handling the [OpenFailed](videotrack_openfailed.md) event of a [VideoTrack](videotrack.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotrackopenfailedeventargs_extendederror.md b/windows.media.core/videotrackopenfailedeventargs_extendederror.md
index 7f9156e50a..75e1b42c55 100644
--- a/windows.media.core/videotrackopenfailedeventargs_extendederror.md
+++ b/windows.media.core/videotrackopenfailedeventargs_extendederror.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoTrackOpenFailedEventArgs.ExtendedError
--api-type: winrt property
----
# Windows.Media.Core.VideoTrackOpenFailedEventArgs.ExtendedError
## -description
Gets the extended error code for an error that occurs when opening a [VideoTrack](videotrack.md).
## -property-value
The extended error code for an error that occurs when opening a [VideoTrack](videotrack.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoTrackOpenFailedEventArgs.ExtendedError
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoTrackOpenFailedEventArgs.ExtendedError
+
+## -description
+Gets the extended error code for an error that occurs when opening a [VideoTrack](videotrack.md).
+
+## -property-value
+The extended error code for an error that occurs when opening a [VideoTrack](videotrack.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotracksupportinfo.md b/windows.media.core/videotracksupportinfo.md
index dcfcf8182d..392fa7d100 100644
--- a/windows.media.core/videotracksupportinfo.md
+++ b/windows.media.core/videotracksupportinfo.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Core.VideoTrackSupportInfo
--api-type: winrt class
----
# Windows.Media.Core.VideoTrackSupportInfo
## -description
Provides support information for a [VideoTrack](videotrack.md). This information includes the status of the video decoder and the status of the [MediaSource](mediasource.md) with which the video track is associated.
## -remarks
If a failure occurs when a [VideoTrack](videotrack.md) is opened, you can get detailed status and failure information by handling the [OpenFailed](videotrack_openfailed.md) event and checking the [SupportInfo](videotrack_supportinfo.md) property of the **VideoTrack** passed into the event as the sender.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Core.VideoTrackSupportInfo
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Core.VideoTrackSupportInfo
+
+## -description
+Provides support information for a [VideoTrack](videotrack.md). This information includes the status of the video decoder and the status of the [MediaSource](mediasource.md) with which the video track is associated.
+
+## -remarks
+If a failure occurs when a [VideoTrack](videotrack.md) is opened, you can get detailed status and failure information by handling the [OpenFailed](videotrack_openfailed.md) event and checking the [SupportInfo](videotrack_supportinfo.md) property of the **VideoTrack** passed into the event as the sender.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotracksupportinfo_decoderstatus.md b/windows.media.core/videotracksupportinfo_decoderstatus.md
index 5c1669e819..d06535142a 100644
--- a/windows.media.core/videotracksupportinfo_decoderstatus.md
+++ b/windows.media.core/videotracksupportinfo_decoderstatus.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoTrackSupportInfo.DecoderStatus
--api-type: winrt property
----
# Windows.Media.Core.VideoTrackSupportInfo.DecoderStatus
## -description
Gets the status of the video decoder that is decoding the [VideoTrack](videotrack.md), including whether the encoding for the video track is fully or partially supported.
## -property-value
The status of the audio decoder that is decoding the [VideoTrack](videotrack.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoTrackSupportInfo.DecoderStatus
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoTrackSupportInfo.DecoderStatus
+
+## -description
+Gets the status of the video decoder that is decoding the [VideoTrack](videotrack.md), including whether the encoding for the video track is fully or partially supported.
+
+## -property-value
+The status of the audio decoder that is decoding the [VideoTrack](videotrack.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.core/videotracksupportinfo_mediasourcestatus.md b/windows.media.core/videotracksupportinfo_mediasourcestatus.md
index be5ac3e072..eb0646cced 100644
--- a/windows.media.core/videotracksupportinfo_mediasourcestatus.md
+++ b/windows.media.core/videotracksupportinfo_mediasourcestatus.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Core.VideoTrackSupportInfo.MediaSourceStatus
--api-type: winrt property
----
# Windows.Media.Core.VideoTrackSupportInfo.MediaSourceStatus
## -description
Gets the status of the [MediaSource](mediasource.md) with which the [VideoTrack](videotrack.md) is associated.
## -property-value
The status of the [MediaSource](mediasource.md) with which the [VideoTrack](videotrack.md) is associated.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Core.VideoTrackSupportInfo.MediaSourceStatus
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Core.VideoTrackSupportInfo.MediaSourceStatus
+
+## -description
+Gets the status of the [MediaSource](mediasource.md) with which the [VideoTrack](videotrack.md) is associated.
+
+## -property-value
+The status of the [MediaSource](mediasource.md) with which the [VideoTrack](videotrack.md) is associated.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics.md b/windows.media.devices.core/cameraintrinsics.md
index 765c25de25..2c8cb21ce9 100644
--- a/windows.media.devices.core/cameraintrinsics.md
+++ b/windows.media.devices.core/cameraintrinsics.md
@@ -1,3 +1,19 @@
----
-api-id: T:Windows.Media.Devices.Core.CameraIntrinsics
--api-type: winrt class
----
# Windows.Media.Devices.Core.CameraIntrinsics
## -description
Represents the intrinsics that describe the camera distortion model.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.CameraIntrinsics
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics
+
+## -description
+Represents the intrinsics that describe the camera distortion model.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_distortpoint_18351951.md b/windows.media.devices.core/cameraintrinsics_distortpoint_18351951.md
index 93de253593..a089c514bc 100644
--- a/windows.media.devices.core/cameraintrinsics_distortpoint_18351951.md
+++ b/windows.media.devices.core/cameraintrinsics_distortpoint_18351951.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.DistortPoint(Windows.Foundation.Point)
--api-type: winrt method
----
# Windows.Media.Devices.Core.CameraIntrinsics.DistortPoint
## -description
Applies the distortion model of the camera to an undistorted point so that the resulting point's location is distorted as if it were captured by the camera's lens.
## -parameters
### -param input
The point to undestort.
## -returns
An undistorted point.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.DistortPoint(Windows.Foundation.Point)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.DistortPoint
+
+## -description
+Applies the distortion model of the camera to an undistorted point so that the resulting point's location is distorted as if it were captured by the camera's lens.
+
+## -parameters
+### -param input
+The point to undestort.
+
+## -returns
+An undistorted point.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_distortpoints_88187186.md b/windows.media.devices.core/cameraintrinsics_distortpoints_88187186.md
index 9362a2c52c..11e023a0fb 100644
--- a/windows.media.devices.core/cameraintrinsics_distortpoints_88187186.md
+++ b/windows.media.devices.core/cameraintrinsics_distortpoints_88187186.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.DistortPoints(Windows.Foundation.Point[],Windows.Foundation.Point[])
--api-type: winrt method
----
# Windows.Media.Devices.Core.CameraIntrinsics.DistortPoints
## -description
Applies the distortion model of the camera to an array of undistorted points so that the resulting points' locations are distorted as if they were captured by the camera's lens.
## -parameters
### -param inputs
The array of points to undestort.
### -param results
An array of undistorted points.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.DistortPoints(Windows.Foundation.Point[],Windows.Foundation.Point[])
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.DistortPoints
+
+## -description
+Applies the distortion model of the camera to an array of undistorted points so that the resulting points' locations are distorted as if they were captured by the camera's lens.
+
+## -parameters
+### -param inputs
+The array of points to undestort.
+
+### -param results
+An array of undistorted points.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_focallength.md b/windows.media.devices.core/cameraintrinsics_focallength.md
index ababab7051..2d31091209 100644
--- a/windows.media.devices.core/cameraintrinsics_focallength.md
+++ b/windows.media.devices.core/cameraintrinsics_focallength.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.FocalLength
--api-type: winrt property
----
# Windows.Media.Devices.Core.CameraIntrinsics.FocalLength
## -description
Gets the focal length of the camera.
## -property-value
The focal length of the camera.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.FocalLength
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.FocalLength
+
+## -description
+Gets the focal length of the camera.
+
+## -property-value
+The focal length of the camera.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_imageheight.md b/windows.media.devices.core/cameraintrinsics_imageheight.md
index 2a7ccaa7a4..9cb64df9a7 100644
--- a/windows.media.devices.core/cameraintrinsics_imageheight.md
+++ b/windows.media.devices.core/cameraintrinsics_imageheight.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.ImageHeight
--api-type: winrt property
----
# Windows.Media.Devices.Core.CameraIntrinsics.ImageHeight
## -description
Gets the image height of the camera, in pixels.
## -property-value
The image height of the camera, in pixels.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.ImageHeight
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.ImageHeight
+
+## -description
+Gets the image height of the camera, in pixels.
+
+## -property-value
+The image height of the camera, in pixels.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_imagewidth.md b/windows.media.devices.core/cameraintrinsics_imagewidth.md
index 48929caf0e..738bfb0a70 100644
--- a/windows.media.devices.core/cameraintrinsics_imagewidth.md
+++ b/windows.media.devices.core/cameraintrinsics_imagewidth.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.ImageWidth
--api-type: winrt property
----
# Windows.Media.Devices.Core.CameraIntrinsics.ImageWidth
## -description
Gets the image width of the camera, in pixels.
## -property-value
The image width of the camera, in pixels.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.ImageWidth
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.ImageWidth
+
+## -description
+Gets the image width of the camera, in pixels.
+
+## -property-value
+The image width of the camera, in pixels.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_principalpoint.md b/windows.media.devices.core/cameraintrinsics_principalpoint.md
index f73c348035..7d55a87315 100644
--- a/windows.media.devices.core/cameraintrinsics_principalpoint.md
+++ b/windows.media.devices.core/cameraintrinsics_principalpoint.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.PrincipalPoint
--api-type: winrt property
----
# Windows.Media.Devices.Core.CameraIntrinsics.PrincipalPoint
## -description
Gets the principal point of the camera.
## -property-value
The principal point of the camera.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.PrincipalPoint
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.PrincipalPoint
+
+## -description
+Gets the principal point of the camera.
+
+## -property-value
+The principal point of the camera.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_projectmanyontoframe_706628651.md b/windows.media.devices.core/cameraintrinsics_projectmanyontoframe_706628651.md
index 099df711b2..585bacafa1 100644
--- a/windows.media.devices.core/cameraintrinsics_projectmanyontoframe_706628651.md
+++ b/windows.media.devices.core/cameraintrinsics_projectmanyontoframe_706628651.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.ProjectManyOntoFrame(Windows.Foundation.Numerics.Vector3[],Windows.Foundation.Point[])
--api-type: winrt method
----
# Windows.Media.Devices.Core.CameraIntrinsics.ProjectManyOntoFrame
## -description
Projects an array of camera space points into screen space pixel coordinates.
## -parameters
### -param coordinates
The array of camera space points to project into screen space.
### -param results
The array of screen space pixel coordinates.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.ProjectManyOntoFrame(Windows.Foundation.Numerics.Vector3[],Windows.Foundation.Point[])
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.ProjectManyOntoFrame
+
+## -description
+Projects an array of camera space points into screen space pixel coordinates.
+
+## -parameters
+### -param coordinates
+The array of camera space points to project into screen space.
+
+### -param results
+The array of screen space pixel coordinates.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_projectontoframe_368534707.md b/windows.media.devices.core/cameraintrinsics_projectontoframe_368534707.md
index 6f3a81c6fa..25a5273d26 100644
--- a/windows.media.devices.core/cameraintrinsics_projectontoframe_368534707.md
+++ b/windows.media.devices.core/cameraintrinsics_projectontoframe_368534707.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.ProjectOntoFrame(Windows.Foundation.Numerics.Vector3)
--api-type: winrt method
----
# Windows.Media.Devices.Core.CameraIntrinsics.ProjectOntoFrame
## -description
Projects a camera space point into screen space pixel coordinates.
## -parameters
### -param coordinate
The camera space point to project into screen space.
## -returns
The screen space pixel coordinates.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.ProjectOntoFrame(Windows.Foundation.Numerics.Vector3)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.ProjectOntoFrame
+
+## -description
+Projects a camera space point into screen space pixel coordinates.
+
+## -parameters
+### -param coordinate
+The camera space point to project into screen space.
+
+## -returns
+The screen space pixel coordinates.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_radialdistortion.md b/windows.media.devices.core/cameraintrinsics_radialdistortion.md
index 7ad76f534e..0424b5a55e 100644
--- a/windows.media.devices.core/cameraintrinsics_radialdistortion.md
+++ b/windows.media.devices.core/cameraintrinsics_radialdistortion.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.RadialDistortion
--api-type: winrt property
----
# Windows.Media.Devices.Core.CameraIntrinsics.RadialDistortion
## -description
Gets the radial distortion coefficient of the camera.
## -property-value
The radial distortion coefficient of the camera.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.RadialDistortion
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.RadialDistortion
+
+## -description
+Gets the radial distortion coefficient of the camera.
+
+## -property-value
+The radial distortion coefficient of the camera.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_tangentialdistortion.md b/windows.media.devices.core/cameraintrinsics_tangentialdistortion.md
index 6266f630d2..c78366f04e 100644
--- a/windows.media.devices.core/cameraintrinsics_tangentialdistortion.md
+++ b/windows.media.devices.core/cameraintrinsics_tangentialdistortion.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.TangentialDistortion
--api-type: winrt property
----
# Windows.Media.Devices.Core.CameraIntrinsics.TangentialDistortion
## -description
Gets the tangential distortion coefficient of the camera.
## -property-value
The tangential distortion coefficient of the camera.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.TangentialDistortion
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.TangentialDistortion
+
+## -description
+Gets the tangential distortion coefficient of the camera.
+
+## -property-value
+The tangential distortion coefficient of the camera.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_undistortedprojectiontransform.md b/windows.media.devices.core/cameraintrinsics_undistortedprojectiontransform.md
index ed86f86160..72aa5ba911 100644
--- a/windows.media.devices.core/cameraintrinsics_undistortedprojectiontransform.md
+++ b/windows.media.devices.core/cameraintrinsics_undistortedprojectiontransform.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.UndistortedProjectionTransform
--api-type: winrt property
----
# Windows.Media.Devices.Core.CameraIntrinsics.UndistortedProjectionTransform
## -description
Gets a matrix that transforms a point to compensate for the distortion model of the camera, resulting in an undistorted point.
## -property-value
A matrix that transforms a point to compensate for the distortion model of the camera.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.CameraIntrinsics.UndistortedProjectionTransform
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.UndistortedProjectionTransform
+
+## -description
+Gets a matrix that transforms a point to compensate for the distortion model of the camera, resulting in an undistorted point.
+
+## -property-value
+A matrix that transforms a point to compensate for the distortion model of the camera.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_undistortpoint_2080601284.md b/windows.media.devices.core/cameraintrinsics_undistortpoint_2080601284.md
index fcc7827771..3ef8aa8576 100644
--- a/windows.media.devices.core/cameraintrinsics_undistortpoint_2080601284.md
+++ b/windows.media.devices.core/cameraintrinsics_undistortpoint_2080601284.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.UndistortPoint(Windows.Foundation.Point)
--api-type: winrt method
----
# Windows.Media.Devices.Core.CameraIntrinsics.UndistortPoint
## -description
Transforms a point to compensate for the distortion model of the camera, resulting in an undistorted point.
## -parameters
### -param input
The point to undistort.
## -returns
An undistorted point.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.UndistortPoint(Windows.Foundation.Point)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.UndistortPoint
+
+## -description
+Transforms a point to compensate for the distortion model of the camera, resulting in an undistorted point.
+
+## -parameters
+### -param input
+The point to undistort.
+
+## -returns
+An undistorted point.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_undistortpoints_505390269.md b/windows.media.devices.core/cameraintrinsics_undistortpoints_505390269.md
index 7cc5463e3b..6533f844a5 100644
--- a/windows.media.devices.core/cameraintrinsics_undistortpoints_505390269.md
+++ b/windows.media.devices.core/cameraintrinsics_undistortpoints_505390269.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.UndistortPoints(Windows.Foundation.Point[],Windows.Foundation.Point[])
--api-type: winrt method
----
# Windows.Media.Devices.Core.CameraIntrinsics.UndistortPoints
## -description
Transforms an array of points to compensate for the distortion model of the camera, resulting in an array of undistorted points.
## -parameters
### -param inputs
The array of points to undistort.
### -param results
An array of undistorted points.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.UndistortPoints(Windows.Foundation.Point[],Windows.Foundation.Point[])
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.UndistortPoints
+
+## -description
+Transforms an array of points to compensate for the distortion model of the camera, resulting in an array of undistorted points.
+
+## -parameters
+### -param inputs
+The array of points to undistort.
+
+### -param results
+An array of undistorted points.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_unprojectatunitdepth_1064040166.md b/windows.media.devices.core/cameraintrinsics_unprojectatunitdepth_1064040166.md
index fb0c3b13fd..84787976d2 100644
--- a/windows.media.devices.core/cameraintrinsics_unprojectatunitdepth_1064040166.md
+++ b/windows.media.devices.core/cameraintrinsics_unprojectatunitdepth_1064040166.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.UnprojectAtUnitDepth(Windows.Foundation.Point)
--api-type: winrt method
----
# Windows.Media.Devices.Core.CameraIntrinsics.UnprojectAtUnitDepth
## -description
Unprojects pixel coordinates into a camera space ray from the camera origin, expressed as a X, Y coordinates on the plane at Z = 1.0.
## -parameters
### -param pixelCoordinate
The pixel coordinates to unproject into camera space.
## -returns
The X, Y coordinates of the unprojected pixel on the plane at Z = 1.0.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.UnprojectAtUnitDepth(Windows.Foundation.Point)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.UnprojectAtUnitDepth
+
+## -description
+Unprojects pixel coordinates into a camera space ray from the camera origin, expressed as a X, Y coordinates on the plane at Z = 1.0.
+
+## -parameters
+### -param pixelCoordinate
+The pixel coordinates to unproject into camera space.
+
+## -returns
+The X, Y coordinates of the unprojected pixel on the plane at Z = 1.0.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/cameraintrinsics_unprojectpixelsatunitdepth_1708320502.md b/windows.media.devices.core/cameraintrinsics_unprojectpixelsatunitdepth_1708320502.md
index 0c3c6bf7a2..4360d24b66 100644
--- a/windows.media.devices.core/cameraintrinsics_unprojectpixelsatunitdepth_1708320502.md
+++ b/windows.media.devices.core/cameraintrinsics_unprojectpixelsatunitdepth_1708320502.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.UnprojectPixelsAtUnitDepth(Windows.Foundation.Point[],Windows.Foundation.Numerics.Vector2[])
--api-type: winrt method
----
# Windows.Media.Devices.Core.CameraIntrinsics.UnprojectPixelsAtUnitDepth
## -description
Unprojects an array pixel coordinates into a camera space rays from the camera origin, expressed as a X, Y coordinates on the plane at Z = 1.0.
## -parameters
### -param pixelCoordinates
The array of pixel coordinates to unproject into camera space.
### -param results
The array of X, Y coordinates of the unprojected pixels on the plane at Z = 1.0.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.CameraIntrinsics.UnprojectPixelsAtUnitDepth(Windows.Foundation.Point[],Windows.Foundation.Numerics.Vector2[])
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.CameraIntrinsics.UnprojectPixelsAtUnitDepth
+
+## -description
+Unprojects an array pixel coordinates into a camera space rays from the camera origin, expressed as a X, Y coordinates on the plane at Z = 1.0.
+
+## -parameters
+### -param pixelCoordinates
+The array of pixel coordinates to unproject into camera space.
+
+### -param results
+The array of X, Y coordinates of the unprojected pixels on the plane at Z = 1.0.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/depthcorrelatedcoordinatemapper.md b/windows.media.devices.core/depthcorrelatedcoordinatemapper.md
index 547a0be146..4538d7f1be 100644
--- a/windows.media.devices.core/depthcorrelatedcoordinatemapper.md
+++ b/windows.media.devices.core/depthcorrelatedcoordinatemapper.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper
--api-type: winrt class
----
# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper
## -description
Maps 2D points in a [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to 3D space or to a frame from a different **MediaFrameSource** using data from a [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md).
## -remarks
Get an instance of this class by calling the [TryCreateCoordinateMapper](../windows.media.capture.frames/depthmediaframe_trycreatecoordinatemapper.md) of a [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md).
## -examples
## -see-also
[IClosable](../windows.foundation/iclosable.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper
+
+## -description
+Maps 2D points in a [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to 3D space or to a frame from a different **MediaFrameSource** using data from a [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md).
+
+## -remarks
+Get an instance of this class by calling the [TryCreateCoordinateMapper](../windows.media.capture.frames/depthmediaframe_trycreatecoordinatemapper.md) of a [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md).
+
+## -examples
+
+## -see-also
+[IClosable](../windows.foundation/iclosable.md)
\ No newline at end of file
diff --git a/windows.media.devices.core/depthcorrelatedcoordinatemapper_close_811482585.md b/windows.media.devices.core/depthcorrelatedcoordinatemapper_close_811482585.md
index cb5fdc07fd..a0fbfde7c0 100644
--- a/windows.media.devices.core/depthcorrelatedcoordinatemapper_close_811482585.md
+++ b/windows.media.devices.core/depthcorrelatedcoordinatemapper_close_811482585.md
@@ -1,3 +1,20 @@
----
-api-id: M:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.Close
--api-type: winrt method
----
# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.Close
## -description
Disposes of the object and associated resources.
## -remarks
The **Close** method is used by Universal Windows app using JavaScript. For apps written using the .NET Framework 4.5 in C# and VB.NET, the **Close** method is exposed as the **Dispose()** method on the [DepthCorrelatedCoordinateMapper](depthcorrelatedcoordinatemapper.md) object. For apps written in C++, the **Close** method will be called when using the **delete** keyword on the object.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.Close
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.Close
+
+## -description
+Disposes of the object and associated resources.
+
+## -remarks
+The **Close** method is used by Universal Windows app using JavaScript. For apps written using the .NET Framework 4.5 in C# and VB.NET, the **Close** method is exposed as the **Dispose()** method on the [DepthCorrelatedCoordinateMapper](depthcorrelatedcoordinatemapper.md) object. For apps written in C++, the **Close** method will be called when using the **delete** keyword on the object.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/depthcorrelatedcoordinatemapper_mappoint_1078540697.md b/windows.media.devices.core/depthcorrelatedcoordinatemapper_mappoint_1078540697.md
index 12f46c9380..c188c3fbf9 100644
--- a/windows.media.devices.core/depthcorrelatedcoordinatemapper_mappoint_1078540697.md
+++ b/windows.media.devices.core/depthcorrelatedcoordinatemapper_mappoint_1078540697.md
@@ -1,3 +1,32 @@
----
-api-id: M:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.MapPoint(Windows.Foundation.Point,Windows.Perception.Spatial.SpatialCoordinateSystem,Windows.Media.Devices.Core.CameraIntrinsics)
--api-type: winrt method
----
# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.MapPoint
## -description
Maps a point from one [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to another, using depth information from the [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md) from which the coordinate mapper was created with a call to [TryCreateCoordinateMapper](../windows.media.capture.frames/depthmediaframe_trycreatecoordinatemapper.md).
## -parameters
### -param sourcePoint
The source point to be mapped to the coordinate system of a different media frame source, which is specified in the *targetCoordinateSystem* parameter.
### -param targetCoordinateSystem
The coordinate system of the target media frame source to which the point is mapped.
### -param targetCameraIntrinsics
The camera intrinsics describing the projection and distortion models of the media frame source to which the point is mapped.
## -returns
A mapped point.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.MapPoint(Windows.Foundation.Point,Windows.Perception.Spatial.SpatialCoordinateSystem,Windows.Media.Devices.Core.CameraIntrinsics)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.MapPoint
+
+## -description
+Maps a point from one [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to another, using depth information from the [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md) from which the coordinate mapper was created with a call to [TryCreateCoordinateMapper](../windows.media.capture.frames/depthmediaframe_trycreatecoordinatemapper.md).
+
+## -parameters
+### -param sourcePoint
+The source point to be mapped to the coordinate system of a different media frame source, which is specified in the *targetCoordinateSystem* parameter.
+
+### -param targetCoordinateSystem
+The coordinate system of the target media frame source to which the point is mapped.
+
+### -param targetCameraIntrinsics
+The camera intrinsics describing the projection and distortion models of the media frame source to which the point is mapped.
+
+## -returns
+A mapped point.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/depthcorrelatedcoordinatemapper_mappoints_790874304.md b/windows.media.devices.core/depthcorrelatedcoordinatemapper_mappoints_790874304.md
index 880e8d890c..e19ba47f79 100644
--- a/windows.media.devices.core/depthcorrelatedcoordinatemapper_mappoints_790874304.md
+++ b/windows.media.devices.core/depthcorrelatedcoordinatemapper_mappoints_790874304.md
@@ -1,3 +1,32 @@
----
-api-id: M:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.MapPoints(Windows.Foundation.Point[],Windows.Perception.Spatial.SpatialCoordinateSystem,Windows.Media.Devices.Core.CameraIntrinsics,Windows.Foundation.Point[])
--api-type: winrt method
----
# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.MapPoints
## -description
Maps an array of points from one [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to another, using depth information from the [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md) from which the coordinate mapper was created with a call to [TryCreateCoordinateMapper](../windows.media.capture.frames/depthmediaframe_trycreatecoordinatemapper.md).
## -parameters
### -param sourcePoints
An array of source points to be mapped to the coordinate system of a different media frame source, which is specified in the *targetCoordinateSystem* parameter.
### -param targetCoordinateSystem
The coordinate system of the target media frame source to which the points are mapped.
### -param targetCameraIntrinsics
The camera intrinsics describing the projection and distortion models of the media frame source to which the points are mapped.
### -param results
An array mapped points.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.MapPoints(Windows.Foundation.Point[],Windows.Perception.Spatial.SpatialCoordinateSystem,Windows.Media.Devices.Core.CameraIntrinsics,Windows.Foundation.Point[])
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.MapPoints
+
+## -description
+Maps an array of points from one [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to another, using depth information from the [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md) from which the coordinate mapper was created with a call to [TryCreateCoordinateMapper](../windows.media.capture.frames/depthmediaframe_trycreatecoordinatemapper.md).
+
+## -parameters
+### -param sourcePoints
+An array of source points to be mapped to the coordinate system of a different media frame source, which is specified in the *targetCoordinateSystem* parameter.
+
+### -param targetCoordinateSystem
+The coordinate system of the target media frame source to which the points are mapped.
+
+### -param targetCameraIntrinsics
+The camera intrinsics describing the projection and distortion models of the media frame source to which the points are mapped.
+
+### -param results
+An array mapped points.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/depthcorrelatedcoordinatemapper_unprojectpoint_1220498323.md b/windows.media.devices.core/depthcorrelatedcoordinatemapper_unprojectpoint_1220498323.md
index c7923c55d7..4dd30a6c17 100644
--- a/windows.media.devices.core/depthcorrelatedcoordinatemapper_unprojectpoint_1220498323.md
+++ b/windows.media.devices.core/depthcorrelatedcoordinatemapper_unprojectpoint_1220498323.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.UnprojectPoint(Windows.Foundation.Point,Windows.Perception.Spatial.SpatialCoordinateSystem)
--api-type: winrt method
----
# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.UnprojectPoint
## -description
Unprojects a 2D point from a [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to a point in 3D space, using depth information from the [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md) from which the coordinate mapper was created with a call to [TryCreateCoordinateMapper](../windows.media.capture.frames/depthmediaframe_trycreatecoordinatemapper.md).
## -parameters
### -param sourcePoint
The 2D source point within the [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to map.
### -param targetCoordinateSystem
The coordinate system to which the point is unprojected.
## -returns
An point in 3D space.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.UnprojectPoint(Windows.Foundation.Point,Windows.Perception.Spatial.SpatialCoordinateSystem)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.UnprojectPoint
+
+## -description
+Unprojects a 2D point from a [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to a point in 3D space, using depth information from the [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md) from which the coordinate mapper was created with a call to [TryCreateCoordinateMapper](../windows.media.capture.frames/depthmediaframe_trycreatecoordinatemapper.md).
+
+## -parameters
+### -param sourcePoint
+The 2D source point within the [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to map.
+
+### -param targetCoordinateSystem
+The coordinate system to which the point is unprojected.
+
+## -returns
+An point in 3D space.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/depthcorrelatedcoordinatemapper_unprojectpoints_524028040.md b/windows.media.devices.core/depthcorrelatedcoordinatemapper_unprojectpoints_524028040.md
index 60c5ca194d..c8eee7e684 100644
--- a/windows.media.devices.core/depthcorrelatedcoordinatemapper_unprojectpoints_524028040.md
+++ b/windows.media.devices.core/depthcorrelatedcoordinatemapper_unprojectpoints_524028040.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.UnprojectPoints(Windows.Foundation.Point[],Windows.Perception.Spatial.SpatialCoordinateSystem,Windows.Foundation.Numerics.Vector3[])
--api-type: winrt method
----
# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.UnprojectPoints
## -description
Unprojects an array of 2D points from a [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to a point in 3D space, using depth information from the [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md) from which the coordinate mapper was created with a call to [TryCreateCoordinateMapper](../windows.media.capture.frames/depthmediaframe_trycreatecoordinatemapper.md).
## -parameters
### -param sourcePoints
The array of 2D source points within the [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to map.
### -param targetCoordinateSystem
The coordinate system to which the points are unprojected.
### -param results
An array of points in 3D space.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.UnprojectPoints(Windows.Foundation.Point[],Windows.Perception.Spatial.SpatialCoordinateSystem,Windows.Foundation.Numerics.Vector3[])
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.DepthCorrelatedCoordinateMapper.UnprojectPoints
+
+## -description
+Unprojects an array of 2D points from a [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to a point in 3D space, using depth information from the [DepthMediaFrame](../windows.media.capture.frames/depthmediaframe.md) from which the coordinate mapper was created with a call to [TryCreateCoordinateMapper](../windows.media.capture.frames/depthmediaframe_trycreatecoordinatemapper.md).
+
+## -parameters
+### -param sourcePoints
+The array of 2D source points within the [MediaFrameSource](../windows.media.capture.frames/mediaframesource.md) to map.
+
+### -param targetCoordinateSystem
+The coordinate system to which the points are unprojected.
+
+### -param results
+An array of points in 3D space.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontrolcapabilities.md b/windows.media.devices.core/framecontrolcapabilities.md
index d086378bc3..e3891fbb79 100644
--- a/windows.media.devices.core/framecontrolcapabilities.md
+++ b/windows.media.devices.core/framecontrolcapabilities.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameControlCapabilities
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameControlCapabilities
## -description
Provides information about the variable photo sequence capabilities of the capture device.
## -remarks
Get an instance of this class by accessing the [FrameCapabilities](variablephotosequencecontroller_framecapabilities.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameControlCapabilities
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameControlCapabilities
+
+## -description
+Provides information about the variable photo sequence capabilities of the capture device.
+
+## -remarks
+Get an instance of this class by accessing the [FrameCapabilities](variablephotosequencecontroller_framecapabilities.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontrolcapabilities_exposure.md b/windows.media.devices.core/framecontrolcapabilities_exposure.md
index 0c2cacad30..1d1d2afe6f 100644
--- a/windows.media.devices.core/framecontrolcapabilities_exposure.md
+++ b/windows.media.devices.core/framecontrolcapabilities_exposure.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.Exposure
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameControlCapabilities.Exposure
## -description
Gets the exposure capabilities of the capture device for variable photo sequences.
## -property-value
The exposure capabilities of the capture device for variable photo sequences.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.Exposure
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameControlCapabilities.Exposure
+
+## -description
+Gets the exposure capabilities of the capture device for variable photo sequences.
+
+## -property-value
+The exposure capabilities of the capture device for variable photo sequences.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontrolcapabilities_exposurecompensation.md b/windows.media.devices.core/framecontrolcapabilities_exposurecompensation.md
index ce02b7afc3..6d19992a99 100644
--- a/windows.media.devices.core/framecontrolcapabilities_exposurecompensation.md
+++ b/windows.media.devices.core/framecontrolcapabilities_exposurecompensation.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.ExposureCompensation
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameControlCapabilities.ExposureCompensation
## -description
Gets the exposure compensation capabilities of the capture device for variable photo sequences.
## -property-value
The exposure capabilities of the capture device for variable photo sequences.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.ExposureCompensation
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameControlCapabilities.ExposureCompensation
+
+## -description
+Gets the exposure compensation capabilities of the capture device for variable photo sequences.
+
+## -property-value
+The exposure capabilities of the capture device for variable photo sequences.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontrolcapabilities_flash.md b/windows.media.devices.core/framecontrolcapabilities_flash.md
index a3a1a3b99f..b153babbd2 100644
--- a/windows.media.devices.core/framecontrolcapabilities_flash.md
+++ b/windows.media.devices.core/framecontrolcapabilities_flash.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.Flash
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameControlCapabilities.Flash
## -description
Gets the flash capabilities of the capture device for variable photo sequences.
## -property-value
The flash capabilities of the capture device for variable photo sequences.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.Flash
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameControlCapabilities.Flash
+
+## -description
+Gets the flash capabilities of the capture device for variable photo sequences.
+
+## -property-value
+The flash capabilities of the capture device for variable photo sequences.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontrolcapabilities_focus.md b/windows.media.devices.core/framecontrolcapabilities_focus.md
index 2edbb8dfa7..d9a35f5ca2 100644
--- a/windows.media.devices.core/framecontrolcapabilities_focus.md
+++ b/windows.media.devices.core/framecontrolcapabilities_focus.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.Focus
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameControlCapabilities.Focus
## -description
Gets the focus capabilities of the capture device for variable photo sequences.
## -property-value
The focus capabilities of the capture device for variable photo sequences.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.Focus
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameControlCapabilities.Focus
+
+## -description
+Gets the focus capabilities of the capture device for variable photo sequences.
+
+## -property-value
+The focus capabilities of the capture device for variable photo sequences.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontrolcapabilities_isospeed.md b/windows.media.devices.core/framecontrolcapabilities_isospeed.md
index 3a03a97f23..849a438f91 100644
--- a/windows.media.devices.core/framecontrolcapabilities_isospeed.md
+++ b/windows.media.devices.core/framecontrolcapabilities_isospeed.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.IsoSpeed
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameControlCapabilities.IsoSpeed
## -description
Gets the ISO speed capabilities of the capture device for variable photo sequences.
## -property-value
The ISO speed capabilities of the capture device for variable photo sequences.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.IsoSpeed
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameControlCapabilities.IsoSpeed
+
+## -description
+Gets the ISO speed capabilities of the capture device for variable photo sequences.
+
+## -property-value
+The ISO speed capabilities of the capture device for variable photo sequences.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontrolcapabilities_photoconfirmationsupported.md b/windows.media.devices.core/framecontrolcapabilities_photoconfirmationsupported.md
index 168264a0b3..20524599b8 100644
--- a/windows.media.devices.core/framecontrolcapabilities_photoconfirmationsupported.md
+++ b/windows.media.devices.core/framecontrolcapabilities_photoconfirmationsupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.PhotoConfirmationSupported
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameControlCapabilities.PhotoConfirmationSupported
## -description
Gets whether the capture device supports photo confirmation for variable photo sequences.
## -property-value
Whether the capture device supports photo confirmation for variable photo sequences.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameControlCapabilities.PhotoConfirmationSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameControlCapabilities.PhotoConfirmationSupported
+
+## -description
+Gets whether the capture device supports photo confirmation for variable photo sequences.
+
+## -property-value
+Whether the capture device supports photo confirmation for variable photo sequences.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontroller.md b/windows.media.devices.core/framecontroller.md
index f7ea73491b..a023c83353 100644
--- a/windows.media.devices.core/framecontroller.md
+++ b/windows.media.devices.core/framecontroller.md
@@ -1,3 +1,19 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameController
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameController
## -description
Represents the settings for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameController
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameController
+
+## -description
+Represents the settings for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontroller_exposurecompensationcontrol.md b/windows.media.devices.core/framecontroller_exposurecompensationcontrol.md
index 3ea5e82bfc..c840c004d4 100644
--- a/windows.media.devices.core/framecontroller_exposurecompensationcontrol.md
+++ b/windows.media.devices.core/framecontroller_exposurecompensationcontrol.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameController.ExposureCompensationControl
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameController.ExposureCompensationControl
## -description
Gets the exposure compensation settings for a frame in a variable photo sequence.
## -property-value
The exposure compensation settings for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameController.ExposureCompensationControl
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameController.ExposureCompensationControl
+
+## -description
+Gets the exposure compensation settings for a frame in a variable photo sequence.
+
+## -property-value
+The exposure compensation settings for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontroller_exposurecontrol.md b/windows.media.devices.core/framecontroller_exposurecontrol.md
index c6c1dced0e..53bf12db1e 100644
--- a/windows.media.devices.core/framecontroller_exposurecontrol.md
+++ b/windows.media.devices.core/framecontroller_exposurecontrol.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameController.ExposureControl
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameController.ExposureControl
## -description
Gets the exposure settings for a frame in a variable photo sequence.
## -property-value
The exposure settings for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameController.ExposureControl
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameController.ExposureControl
+
+## -description
+Gets the exposure settings for a frame in a variable photo sequence.
+
+## -property-value
+The exposure settings for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontroller_flashcontrol.md b/windows.media.devices.core/framecontroller_flashcontrol.md
index b661c20449..c4a1075e9f 100644
--- a/windows.media.devices.core/framecontroller_flashcontrol.md
+++ b/windows.media.devices.core/framecontroller_flashcontrol.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameController.FlashControl
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameController.FlashControl
## -description
Gets the flash settings for a frame in a variable photo sequence.
## -property-value
The flash settings for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameController.FlashControl
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameController.FlashControl
+
+## -description
+Gets the flash settings for a frame in a variable photo sequence.
+
+## -property-value
+The flash settings for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontroller_focuscontrol.md b/windows.media.devices.core/framecontroller_focuscontrol.md
index 2781eb8969..233544fdca 100644
--- a/windows.media.devices.core/framecontroller_focuscontrol.md
+++ b/windows.media.devices.core/framecontroller_focuscontrol.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameController.FocusControl
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameController.FocusControl
## -description
Gets the focus settings for a frame in a variable photo sequence.
## -property-value
The focus settings for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameController.FocusControl
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameController.FocusControl
+
+## -description
+Gets the focus settings for a frame in a variable photo sequence.
+
+## -property-value
+The focus settings for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontroller_framecontroller_1221375020.md b/windows.media.devices.core/framecontroller_framecontroller_1221375020.md
index 6ba540c208..0461853770 100644
--- a/windows.media.devices.core/framecontroller_framecontroller_1221375020.md
+++ b/windows.media.devices.core/framecontroller_framecontroller_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Devices.Core.FrameController.#ctor
--api-type: winrt method
----
# Windows.Media.Devices.Core.FrameController.FrameController
## -description
Initializes a new instance of the [FrameController](framecontroller.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.FrameController.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.FrameController.FrameController
+
+## -description
+Initializes a new instance of the [FrameController](framecontroller.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontroller_isospeedcontrol.md b/windows.media.devices.core/framecontroller_isospeedcontrol.md
index c465945251..d1c08f3608 100644
--- a/windows.media.devices.core/framecontroller_isospeedcontrol.md
+++ b/windows.media.devices.core/framecontroller_isospeedcontrol.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameController.IsoSpeedControl
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameController.IsoSpeedControl
## -description
Gets the ISO speed settings for a frame in a variable photo sequence.
## -property-value
The ISO speed settings for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameController.IsoSpeedControl
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameController.IsoSpeedControl
+
+## -description
+Gets the ISO speed settings for a frame in a variable photo sequence.
+
+## -property-value
+The ISO speed settings for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framecontroller_photoconfirmationenabled.md b/windows.media.devices.core/framecontroller_photoconfirmationenabled.md
index 01d787bd39..79dd360252 100644
--- a/windows.media.devices.core/framecontroller_photoconfirmationenabled.md
+++ b/windows.media.devices.core/framecontroller_photoconfirmationenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameController.PhotoConfirmationEnabled
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameController.PhotoConfirmationEnabled
## -description
Gets or sets whether photo confirmation is enabled for a frame in a variable photo sequence.
## -property-value
Whether photo confirmation is enabled for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameController.PhotoConfirmationEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameController.PhotoConfirmationEnabled
+
+## -description
+Gets or sets whether photo confirmation is enabled for a frame in a variable photo sequence.
+
+## -property-value
+Whether photo confirmation is enabled for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecapabilities.md b/windows.media.devices.core/frameexposurecapabilities.md
index d7dd0f9da6..4f09d0943b 100644
--- a/windows.media.devices.core/frameexposurecapabilities.md
+++ b/windows.media.devices.core/frameexposurecapabilities.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameExposureCapabilities
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameExposureCapabilities
## -description
Provides information about the exposure time capabilities of the capture device for frames in a variable photo sequences.
## -remarks
Get an instance of this class by accessing the [Exposure](framecontrolcapabilities_exposure.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameExposureCapabilities
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCapabilities
+
+## -description
+Provides information about the exposure time capabilities of the capture device for frames in a variable photo sequences.
+
+## -remarks
+Get an instance of this class by accessing the [Exposure](framecontrolcapabilities_exposure.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecapabilities_max.md b/windows.media.devices.core/frameexposurecapabilities_max.md
index cf09a1e17d..870d1a7663 100644
--- a/windows.media.devices.core/frameexposurecapabilities_max.md
+++ b/windows.media.devices.core/frameexposurecapabilities_max.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureCapabilities.Max
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureCapabilities.Max
## -description
Gets the maximum exposure time supported by the capture device.
## -property-value
The maximum exposure time supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureCapabilities.Max
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCapabilities.Max
+
+## -description
+Gets the maximum exposure time supported by the capture device.
+
+## -property-value
+The maximum exposure time supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecapabilities_min.md b/windows.media.devices.core/frameexposurecapabilities_min.md
index 90e239de09..88e685861d 100644
--- a/windows.media.devices.core/frameexposurecapabilities_min.md
+++ b/windows.media.devices.core/frameexposurecapabilities_min.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureCapabilities.Min
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureCapabilities.Min
## -description
Gets the minimum exposure time supported by the capture device.
## -property-value
Gets the minimum exposure time supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureCapabilities.Min
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCapabilities.Min
+
+## -description
+Gets the minimum exposure time supported by the capture device.
+
+## -property-value
+Gets the minimum exposure time supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecapabilities_step.md b/windows.media.devices.core/frameexposurecapabilities_step.md
index 69c00eb7e6..6676c66ec6 100644
--- a/windows.media.devices.core/frameexposurecapabilities_step.md
+++ b/windows.media.devices.core/frameexposurecapabilities_step.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureCapabilities.Step
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureCapabilities.Step
## -description
Gets the smallest exposure time increment supported by the capture device.
## -property-value
Gets the smallest exposure time increment supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureCapabilities.Step
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCapabilities.Step
+
+## -description
+Gets the smallest exposure time increment supported by the capture device.
+
+## -property-value
+Gets the smallest exposure time increment supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecapabilities_supported.md b/windows.media.devices.core/frameexposurecapabilities_supported.md
index 39c8368d5b..c6f5e1ab39 100644
--- a/windows.media.devices.core/frameexposurecapabilities_supported.md
+++ b/windows.media.devices.core/frameexposurecapabilities_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureCapabilities.Supported
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureCapabilities.Supported
## -description
Gets a value that indicates if the capture device supports the exposure control for variable photo sequences.
## -property-value
True if the capture device supports the exposure control; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureCapabilities.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCapabilities.Supported
+
+## -description
+Gets a value that indicates if the capture device supports the exposure control for variable photo sequences.
+
+## -property-value
+True if the capture device supports the exposure control; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecompensationcapabilities.md b/windows.media.devices.core/frameexposurecompensationcapabilities.md
index 6597fea74e..6618a95824 100644
--- a/windows.media.devices.core/frameexposurecompensationcapabilities.md
+++ b/windows.media.devices.core/frameexposurecompensationcapabilities.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameExposureCompensationCapabilities
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameExposureCompensationCapabilities
## -description
Provides information about the exposure compensation capabilities of the capture device for frames in a variable photo sequences.
## -remarks
Get an instance of this class by accessing the [ExposureCompensation](framecontrolcapabilities_exposurecompensation.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameExposureCompensationCapabilities
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCompensationCapabilities
+
+## -description
+Provides information about the exposure compensation capabilities of the capture device for frames in a variable photo sequences.
+
+## -remarks
+Get an instance of this class by accessing the [ExposureCompensation](framecontrolcapabilities_exposurecompensation.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecompensationcapabilities_max.md b/windows.media.devices.core/frameexposurecompensationcapabilities_max.md
index e89dfed673..e62215caeb 100644
--- a/windows.media.devices.core/frameexposurecompensationcapabilities_max.md
+++ b/windows.media.devices.core/frameexposurecompensationcapabilities_max.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Max
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Max
## -description
Gets the maximum exposure compensation supported by the capture device.
## -property-value
The maximum exposure compensation supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Max
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Max
+
+## -description
+Gets the maximum exposure compensation supported by the capture device.
+
+## -property-value
+The maximum exposure compensation supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecompensationcapabilities_min.md b/windows.media.devices.core/frameexposurecompensationcapabilities_min.md
index 3458303a9b..29cf3f7402 100644
--- a/windows.media.devices.core/frameexposurecompensationcapabilities_min.md
+++ b/windows.media.devices.core/frameexposurecompensationcapabilities_min.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Min
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Min
## -description
Gets the minimum exposure compensation supported by the capture device.
## -property-value
The minimum exposure compensation supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Min
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Min
+
+## -description
+Gets the minimum exposure compensation supported by the capture device.
+
+## -property-value
+The minimum exposure compensation supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecompensationcapabilities_step.md b/windows.media.devices.core/frameexposurecompensationcapabilities_step.md
index 75a81bcc85..6b1b55c8fb 100644
--- a/windows.media.devices.core/frameexposurecompensationcapabilities_step.md
+++ b/windows.media.devices.core/frameexposurecompensationcapabilities_step.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Step
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Step
## -description
Gets the smallest exposure time compensation increment supported by the capture device.
## -property-value
The smallest exposure time compensation increment supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Step
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Step
+
+## -description
+Gets the smallest exposure time compensation increment supported by the capture device.
+
+## -property-value
+The smallest exposure time compensation increment supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecompensationcapabilities_supported.md b/windows.media.devices.core/frameexposurecompensationcapabilities_supported.md
index 451a27023a..8f13da6773 100644
--- a/windows.media.devices.core/frameexposurecompensationcapabilities_supported.md
+++ b/windows.media.devices.core/frameexposurecompensationcapabilities_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Supported
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Supported
## -description
Gets a value that indicates if the capture device supports the frame exposure compensation control for frames in a variable photo sequence.
## -property-value
True if the capture device supports the frame exposure control; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCompensationCapabilities.Supported
+
+## -description
+Gets a value that indicates if the capture device supports the frame exposure compensation control for frames in a variable photo sequence.
+
+## -property-value
+True if the capture device supports the frame exposure control; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecompensationcontrol.md b/windows.media.devices.core/frameexposurecompensationcontrol.md
index fb7b825ee1..179ffaaa0a 100644
--- a/windows.media.devices.core/frameexposurecompensationcontrol.md
+++ b/windows.media.devices.core/frameexposurecompensationcontrol.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameExposureCompensationControl
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameExposureCompensationControl
## -description
Represents the exposure compensation settings for a frame in a variable photo sequence.
## -remarks
Get an instance of this class by accessing the [ExposureCompensation](framecontrolcapabilities_exposurecompensation.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameExposureCompensationControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCompensationControl
+
+## -description
+Represents the exposure compensation settings for a frame in a variable photo sequence.
+
+## -remarks
+Get an instance of this class by accessing the [ExposureCompensation](framecontrolcapabilities_exposurecompensation.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecompensationcontrol_value.md b/windows.media.devices.core/frameexposurecompensationcontrol_value.md
index c9a796633d..7bacda78b6 100644
--- a/windows.media.devices.core/frameexposurecompensationcontrol_value.md
+++ b/windows.media.devices.core/frameexposurecompensationcontrol_value.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureCompensationControl.Value
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureCompensationControl.Value
## -description
Gets or sets the exposure compensation time for a frame in a variable photo sequence.
## -property-value
The exposure compensation time for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureCompensationControl.Value
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureCompensationControl.Value
+
+## -description
+Gets or sets the exposure compensation time for a frame in a variable photo sequence.
+
+## -property-value
+The exposure compensation time for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecontrol.md b/windows.media.devices.core/frameexposurecontrol.md
index c77285b3bf..438a236bf8 100644
--- a/windows.media.devices.core/frameexposurecontrol.md
+++ b/windows.media.devices.core/frameexposurecontrol.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameExposureControl
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameExposureControl
## -description
Represents the exposure time settings for a frame in a variable photo sequence.
## -remarks
Get an instance of this class by accessing the [ExposureControl](framecontroller_exposurecontrol.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameExposureControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureControl
+
+## -description
+Represents the exposure time settings for a frame in a variable photo sequence.
+
+## -remarks
+Get an instance of this class by accessing the [ExposureControl](framecontroller_exposurecontrol.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecontrol_auto.md b/windows.media.devices.core/frameexposurecontrol_auto.md
index 3098ee11c5..b30de02913 100644
--- a/windows.media.devices.core/frameexposurecontrol_auto.md
+++ b/windows.media.devices.core/frameexposurecontrol_auto.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureControl.Auto
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureControl.Auto
## -description
Gets or sets a value indicating whether auto exposure is enabled for a frame in a variable photo sequence.
## -property-value
A value indicating whether auto exposure is enabled for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureControl.Auto
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureControl.Auto
+
+## -description
+Gets or sets a value indicating whether auto exposure is enabled for a frame in a variable photo sequence.
+
+## -property-value
+A value indicating whether auto exposure is enabled for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameexposurecontrol_value.md b/windows.media.devices.core/frameexposurecontrol_value.md
index b53664efdf..2508751225 100644
--- a/windows.media.devices.core/frameexposurecontrol_value.md
+++ b/windows.media.devices.core/frameexposurecontrol_value.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameExposureControl.Value
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameExposureControl.Value
## -description
Gets or sets the exposure time for a frame in a variable photo sequence.
## -property-value
The exposure time for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameExposureControl.Value
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameExposureControl.Value
+
+## -description
+Gets or sets the exposure time for a frame in a variable photo sequence.
+
+## -property-value
+The exposure time for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameflashcapabilities.md b/windows.media.devices.core/frameflashcapabilities.md
index 96da69e04d..abede78bd4 100644
--- a/windows.media.devices.core/frameflashcapabilities.md
+++ b/windows.media.devices.core/frameflashcapabilities.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameFlashCapabilities
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameFlashCapabilities
## -description
Provides information about the flash capabilities of the capture device for frames in a variable photo sequences.
## -remarks
Get an instance of this class by accessing the [FrameControlCapabilities.Flash](framecontrolcapabilities_flash.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameFlashCapabilities
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFlashCapabilities
+
+## -description
+Provides information about the flash capabilities of the capture device for frames in a variable photo sequences.
+
+## -remarks
+Get an instance of this class by accessing the [FrameControlCapabilities.Flash](framecontrolcapabilities_flash.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameflashcapabilities_powersupported.md b/windows.media.devices.core/frameflashcapabilities_powersupported.md
index baae7c4cfc..78d04c6024 100644
--- a/windows.media.devices.core/frameflashcapabilities_powersupported.md
+++ b/windows.media.devices.core/frameflashcapabilities_powersupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFlashCapabilities.PowerSupported
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFlashCapabilities.PowerSupported
## -description
Gets a value indicating whether flash power is supported for frames in a variable photo sequences.
## -property-value
True if flash power is supported; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFlashCapabilities.PowerSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFlashCapabilities.PowerSupported
+
+## -description
+Gets a value indicating whether flash power is supported for frames in a variable photo sequences.
+
+## -property-value
+True if flash power is supported; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameflashcapabilities_redeyereductionsupported.md b/windows.media.devices.core/frameflashcapabilities_redeyereductionsupported.md
index 62183ac92a..79a98b95d9 100644
--- a/windows.media.devices.core/frameflashcapabilities_redeyereductionsupported.md
+++ b/windows.media.devices.core/frameflashcapabilities_redeyereductionsupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFlashCapabilities.RedEyeReductionSupported
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFlashCapabilities.RedEyeReductionSupported
## -description
Gets a value indicating whether red eye reduction is supported for frames in a variable photo sequences.
## -property-value
True if red eye reduction is supported; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFlashCapabilities.RedEyeReductionSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFlashCapabilities.RedEyeReductionSupported
+
+## -description
+Gets a value indicating whether red eye reduction is supported for frames in a variable photo sequences.
+
+## -property-value
+True if red eye reduction is supported; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameflashcapabilities_supported.md b/windows.media.devices.core/frameflashcapabilities_supported.md
index 1318bf3636..9922158f23 100644
--- a/windows.media.devices.core/frameflashcapabilities_supported.md
+++ b/windows.media.devices.core/frameflashcapabilities_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFlashCapabilities.Supported
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFlashCapabilities.Supported
## -description
Gets a value that indicates if the capture device supports the flash control for frames in a variable photo sequence.
## -property-value
True if the capture device supports the flash control; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFlashCapabilities.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFlashCapabilities.Supported
+
+## -description
+Gets a value that indicates if the capture device supports the flash control for frames in a variable photo sequence.
+
+## -property-value
+True if the capture device supports the flash control; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameflashcontrol.md b/windows.media.devices.core/frameflashcontrol.md
index 30f3d7511b..e440512cf8 100644
--- a/windows.media.devices.core/frameflashcontrol.md
+++ b/windows.media.devices.core/frameflashcontrol.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameFlashControl
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameFlashControl
## -description
Represents the flash settings for a frame in a variable photo sequence.
## -remarks
Get an instance of this class by accessing the [FrameController.FlashControl](framecontroller_flashcontrol.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameFlashControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFlashControl
+
+## -description
+Represents the flash settings for a frame in a variable photo sequence.
+
+## -remarks
+Get an instance of this class by accessing the [FrameController.FlashControl](framecontroller_flashcontrol.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameflashcontrol_auto.md b/windows.media.devices.core/frameflashcontrol_auto.md
index 6445f9fa01..2ad40b7126 100644
--- a/windows.media.devices.core/frameflashcontrol_auto.md
+++ b/windows.media.devices.core/frameflashcontrol_auto.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFlashControl.Auto
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFlashControl.Auto
## -description
Gets or sets a value indicating whether flash settings are automatically set for a frame in a variable photo sequence.
## -property-value
True if the flash settings are automatically set for a frame in a variable photo sequence; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFlashControl.Auto
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFlashControl.Auto
+
+## -description
+Gets or sets a value indicating whether flash settings are automatically set for a frame in a variable photo sequence.
+
+## -property-value
+True if the flash settings are automatically set for a frame in a variable photo sequence; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameflashcontrol_mode.md b/windows.media.devices.core/frameflashcontrol_mode.md
index 16f7b6f0bd..203180ccfd 100644
--- a/windows.media.devices.core/frameflashcontrol_mode.md
+++ b/windows.media.devices.core/frameflashcontrol_mode.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFlashControl.Mode
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFlashControl.Mode
## -description
Gets or sets the flash mode for a frame in a variable photo sequence.
## -property-value
The flash mode.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFlashControl.Mode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFlashControl.Mode
+
+## -description
+Gets or sets the flash mode for a frame in a variable photo sequence.
+
+## -property-value
+The flash mode.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameflashcontrol_powerpercent.md b/windows.media.devices.core/frameflashcontrol_powerpercent.md
index 5229809193..ee3fe85353 100644
--- a/windows.media.devices.core/frameflashcontrol_powerpercent.md
+++ b/windows.media.devices.core/frameflashcontrol_powerpercent.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFlashControl.PowerPercent
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFlashControl.PowerPercent
## -description
Gets or sets the flash power for a frame in a variable photo sequence.
## -property-value
The flash power percentage, from 0 to 100, for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFlashControl.PowerPercent
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFlashControl.PowerPercent
+
+## -description
+Gets or sets the flash power for a frame in a variable photo sequence.
+
+## -property-value
+The flash power percentage, from 0 to 100, for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameflashcontrol_redeyereduction.md b/windows.media.devices.core/frameflashcontrol_redeyereduction.md
index 9fd3b89c08..15a7f3171f 100644
--- a/windows.media.devices.core/frameflashcontrol_redeyereduction.md
+++ b/windows.media.devices.core/frameflashcontrol_redeyereduction.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFlashControl.RedEyeReduction
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFlashControl.RedEyeReduction
## -description
Gets or sets a value indicating if red eye reduction is enabled for a frame in a variable photo sequence.
## -property-value
True if red eye reduction is enabled; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFlashControl.RedEyeReduction
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFlashControl.RedEyeReduction
+
+## -description
+Gets or sets a value indicating if red eye reduction is enabled for a frame in a variable photo sequence.
+
+## -property-value
+True if red eye reduction is enabled; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framefocuscapabilities.md b/windows.media.devices.core/framefocuscapabilities.md
index a96932d6a3..8463b1a549 100644
--- a/windows.media.devices.core/framefocuscapabilities.md
+++ b/windows.media.devices.core/framefocuscapabilities.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameFocusCapabilities
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameFocusCapabilities
## -description
Provides information about the focus capabilities of the capture device for frames in a variable photo sequences.
## -remarks
Get an instance of this class by accessing the [Focus](framecontrolcapabilities_focus.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameFocusCapabilities
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFocusCapabilities
+
+## -description
+Provides information about the focus capabilities of the capture device for frames in a variable photo sequences.
+
+## -remarks
+Get an instance of this class by accessing the [Focus](framecontrolcapabilities_focus.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framefocuscapabilities_max.md b/windows.media.devices.core/framefocuscapabilities_max.md
index 47ce0e5936..42a0a0864f 100644
--- a/windows.media.devices.core/framefocuscapabilities_max.md
+++ b/windows.media.devices.core/framefocuscapabilities_max.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFocusCapabilities.Max
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFocusCapabilities.Max
## -description
Gets the maximum focus length supported by the capture device for a frame in a variable photo sequence, specified in millimeters.
## -property-value
The maximum focus length supported by the capture device for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFocusCapabilities.Max
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFocusCapabilities.Max
+
+## -description
+Gets the maximum focus length supported by the capture device for a frame in a variable photo sequence, specified in millimeters.
+
+## -property-value
+The maximum focus length supported by the capture device for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framefocuscapabilities_min.md b/windows.media.devices.core/framefocuscapabilities_min.md
index 25dabc7fa7..b4deecc4f8 100644
--- a/windows.media.devices.core/framefocuscapabilities_min.md
+++ b/windows.media.devices.core/framefocuscapabilities_min.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFocusCapabilities.Min
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFocusCapabilities.Min
## -description
Gets the minimum focus length supported by the capture device for a frame in a variable photo sequence, specified in millimeters.
## -property-value
The minimum focus length supported by the capture device for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFocusCapabilities.Min
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFocusCapabilities.Min
+
+## -description
+Gets the minimum focus length supported by the capture device for a frame in a variable photo sequence, specified in millimeters.
+
+## -property-value
+The minimum focus length supported by the capture device for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framefocuscapabilities_step.md b/windows.media.devices.core/framefocuscapabilities_step.md
index 51c823532b..12fa3f2e58 100644
--- a/windows.media.devices.core/framefocuscapabilities_step.md
+++ b/windows.media.devices.core/framefocuscapabilities_step.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFocusCapabilities.Step
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFocusCapabilities.Step
## -description
Gets the smallest focus increment supported by the capture device for a frame in a variable photo sequence, specified in millimeters.
## -property-value
The smallest focus increment supported by the capture device for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFocusCapabilities.Step
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFocusCapabilities.Step
+
+## -description
+Gets the smallest focus increment supported by the capture device for a frame in a variable photo sequence, specified in millimeters.
+
+## -property-value
+The smallest focus increment supported by the capture device for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framefocuscapabilities_supported.md b/windows.media.devices.core/framefocuscapabilities_supported.md
index 27a2adcb04..5be11e9757 100644
--- a/windows.media.devices.core/framefocuscapabilities_supported.md
+++ b/windows.media.devices.core/framefocuscapabilities_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFocusCapabilities.Supported
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFocusCapabilities.Supported
## -description
Gets a value that indicates if the capture device supports the focus control for frames in a variable photo sequence.
## -property-value
True if the capture device supports the focus control; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFocusCapabilities.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFocusCapabilities.Supported
+
+## -description
+Gets a value that indicates if the capture device supports the focus control for frames in a variable photo sequence.
+
+## -property-value
+True if the capture device supports the focus control; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framefocuscontrol.md b/windows.media.devices.core/framefocuscontrol.md
index 3e270233e8..054d62fb9d 100644
--- a/windows.media.devices.core/framefocuscontrol.md
+++ b/windows.media.devices.core/framefocuscontrol.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameFocusControl
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameFocusControl
## -description
Represents the focus settings for a frame in a variable photo sequence.
## -remarks
Get an instance of this class by accessing the [FocusControl](framecontroller_focuscontrol.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameFocusControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFocusControl
+
+## -description
+Represents the focus settings for a frame in a variable photo sequence.
+
+## -remarks
+Get an instance of this class by accessing the [FocusControl](framecontroller_focuscontrol.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/framefocuscontrol_value.md b/windows.media.devices.core/framefocuscontrol_value.md
index 7369ba0286..29d800a896 100644
--- a/windows.media.devices.core/framefocuscontrol_value.md
+++ b/windows.media.devices.core/framefocuscontrol_value.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameFocusControl.Value
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameFocusControl.Value
## -description
Gets or sets the focus value for a frame in a variable photo sequence.
## -property-value
The focus value for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameFocusControl.Value
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameFocusControl.Value
+
+## -description
+Gets or sets the focus value for a frame in a variable photo sequence.
+
+## -property-value
+The focus value for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameisospeedcapabilities.md b/windows.media.devices.core/frameisospeedcapabilities.md
index 110022ca4e..d2527ffbd4 100644
--- a/windows.media.devices.core/frameisospeedcapabilities.md
+++ b/windows.media.devices.core/frameisospeedcapabilities.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameIsoSpeedCapabilities
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameIsoSpeedCapabilities
## -description
Provides information about the ISO speed capabilities of the capture device for frames in a variable photo sequences.
## -remarks
Get an instance of this class by accessing the [IsoSpeed](framecontrolcapabilities_isospeed.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameIsoSpeedCapabilities
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameIsoSpeedCapabilities
+
+## -description
+Provides information about the ISO speed capabilities of the capture device for frames in a variable photo sequences.
+
+## -remarks
+Get an instance of this class by accessing the [IsoSpeed](framecontrolcapabilities_isospeed.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameisospeedcapabilities_max.md b/windows.media.devices.core/frameisospeedcapabilities_max.md
index f18229af5c..915b210935 100644
--- a/windows.media.devices.core/frameisospeedcapabilities_max.md
+++ b/windows.media.devices.core/frameisospeedcapabilities_max.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Max
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Max
## -description
Gets the maximum ISO speed supported by the capture device for a frame in a variable photo sequence.
## -property-value
The maximum ISO speed supported by the capture device for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Max
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Max
+
+## -description
+Gets the maximum ISO speed supported by the capture device for a frame in a variable photo sequence.
+
+## -property-value
+The maximum ISO speed supported by the capture device for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameisospeedcapabilities_min.md b/windows.media.devices.core/frameisospeedcapabilities_min.md
index 3bf40cc287..bb133dfa9b 100644
--- a/windows.media.devices.core/frameisospeedcapabilities_min.md
+++ b/windows.media.devices.core/frameisospeedcapabilities_min.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Min
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Min
## -description
The minimum ISO speed supported by the capture device for a frame in a variable photo sequence.
## -property-value
The minimum ISO speed supported by the capture device for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Min
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Min
+
+## -description
+The minimum ISO speed supported by the capture device for a frame in a variable photo sequence.
+
+## -property-value
+The minimum ISO speed supported by the capture device for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameisospeedcapabilities_step.md b/windows.media.devices.core/frameisospeedcapabilities_step.md
index d020363548..9e8cbfcf57 100644
--- a/windows.media.devices.core/frameisospeedcapabilities_step.md
+++ b/windows.media.devices.core/frameisospeedcapabilities_step.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Step
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Step
## -description
Gets the smallest ISO speed increment supported by the capture device for a frame in a variable photo sequence, specified in millimeters.
## -property-value
The smallest ISO speed increment supported by the capture device for a frame in a variable photo sequence, specified in millimeters.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Step
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Step
+
+## -description
+Gets the smallest ISO speed increment supported by the capture device for a frame in a variable photo sequence, specified in millimeters.
+
+## -property-value
+The smallest ISO speed increment supported by the capture device for a frame in a variable photo sequence, specified in millimeters.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameisospeedcapabilities_supported.md b/windows.media.devices.core/frameisospeedcapabilities_supported.md
index 2f844d9b66..66621a039f 100644
--- a/windows.media.devices.core/frameisospeedcapabilities_supported.md
+++ b/windows.media.devices.core/frameisospeedcapabilities_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Supported
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Supported
## -description
Gets a value that indicates if the capture device supports the ISO speed control for frames in a variable photo sequence.
## -property-value
True if the capture device supports the ISO speed control; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameIsoSpeedCapabilities.Supported
+
+## -description
+Gets a value that indicates if the capture device supports the ISO speed control for frames in a variable photo sequence.
+
+## -property-value
+True if the capture device supports the ISO speed control; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameisospeedcontrol.md b/windows.media.devices.core/frameisospeedcontrol.md
index 899f8e810d..2737a5c7cc 100644
--- a/windows.media.devices.core/frameisospeedcontrol.md
+++ b/windows.media.devices.core/frameisospeedcontrol.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.Core.FrameIsoSpeedControl
--api-type: winrt class
----
# Windows.Media.Devices.Core.FrameIsoSpeedControl
## -description
Represents the ISO speed settings for a frame in a variable photo sequence.
## -remarks
Get an instance of this class by accessing the [IsoSpeedControl](framecontroller_isospeedcontrol.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.FrameIsoSpeedControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.FrameIsoSpeedControl
+
+## -description
+Represents the ISO speed settings for a frame in a variable photo sequence.
+
+## -remarks
+Get an instance of this class by accessing the [IsoSpeedControl](framecontroller_isospeedcontrol.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameisospeedcontrol_auto.md b/windows.media.devices.core/frameisospeedcontrol_auto.md
index b33b085597..e03a7999ef 100644
--- a/windows.media.devices.core/frameisospeedcontrol_auto.md
+++ b/windows.media.devices.core/frameisospeedcontrol_auto.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedControl.Auto
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameIsoSpeedControl.Auto
## -description
Gets or sets a value indicating whether ISO speed is automatically set for a frame in a variable photo sequence.
## -property-value
True if the ISO speed is automatically set for a frame in a variable photo sequence; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedControl.Auto
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameIsoSpeedControl.Auto
+
+## -description
+Gets or sets a value indicating whether ISO speed is automatically set for a frame in a variable photo sequence.
+
+## -property-value
+True if the ISO speed is automatically set for a frame in a variable photo sequence; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/frameisospeedcontrol_value.md b/windows.media.devices.core/frameisospeedcontrol_value.md
index 83e3cf73e9..c992f1a46c 100644
--- a/windows.media.devices.core/frameisospeedcontrol_value.md
+++ b/windows.media.devices.core/frameisospeedcontrol_value.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedControl.Value
--api-type: winrt property
----
# Windows.Media.Devices.Core.FrameIsoSpeedControl.Value
## -description
Gets or sets the ISO speed for a frame in a variable photo sequence.
## -property-value
The ISO speed for a frame in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.FrameIsoSpeedControl.Value
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.FrameIsoSpeedControl.Value
+
+## -description
+Gets or sets the ISO speed for a frame in a variable photo sequence.
+
+## -property-value
+The ISO speed for a frame in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/variablephotosequencecontroller.md b/windows.media.devices.core/variablephotosequencecontroller.md
index 067c6a6739..038a9a19b1 100644
--- a/windows.media.devices.core/variablephotosequencecontroller.md
+++ b/windows.media.devices.core/variablephotosequencecontroller.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Devices.Core.VariablePhotoSequenceController
--api-type: winrt class
----
# Windows.Media.Devices.Core.VariablePhotoSequenceController
## -description
Represents the settings for a variable photo sequence.
## -remarks
Get an instance of this class by accessing the [VariablePhotoSequenceController](../windows.media.devices/videodevicecontroller_variablephotosequencecontroller.md) property.
For how-to guidance on capturing variable photo sequences, see [Capture a photo sequence with VariablePhotoSequence](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/variable-photo-sequence).
## -examples
## -see-also
[Capture a photo sequence with VariablePhotoSequence](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/variable-photo-sequence)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.Core.VariablePhotoSequenceController
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.Core.VariablePhotoSequenceController
+
+## -description
+Represents the settings for a variable photo sequence.
+
+## -remarks
+Get an instance of this class by accessing the [VariablePhotoSequenceController](../windows.media.devices/videodevicecontroller_variablephotosequencecontroller.md) property.
+
+For how-to guidance on capturing variable photo sequences, see [Capture a photo sequence with VariablePhotoSequence](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/variable-photo-sequence).
+
+## -examples
+
+## -see-also
+[Capture a photo sequence with VariablePhotoSequence](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/variable-photo-sequence)
\ No newline at end of file
diff --git a/windows.media.devices.core/variablephotosequencecontroller_desiredframecontrollers.md b/windows.media.devices.core/variablephotosequencecontroller_desiredframecontrollers.md
index 8014f47473..1b53ee2850 100644
--- a/windows.media.devices.core/variablephotosequencecontroller_desiredframecontrollers.md
+++ b/windows.media.devices.core/variablephotosequencecontroller_desiredframecontrollers.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.Core.VariablePhotoSequenceController.DesiredFrameControllers
--api-type: winrt property
----
# Windows.Media.Devices.Core.VariablePhotoSequenceController.DesiredFrameControllers
## -description
Gets the list of [FrameController](framecontroller.md) objects that determine the settings for each frame in a variable photo sequence.
## -property-value
The list of [FrameController](framecontroller.md) objects that determine the settings for each frame in a variable photo sequence.
## -remarks
The maximum number of frame controllers that can be used at a time is 18.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.VariablePhotoSequenceController.DesiredFrameControllers
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.VariablePhotoSequenceController.DesiredFrameControllers
+
+## -description
+Gets the list of [FrameController](framecontroller.md) objects that determine the settings for each frame in a variable photo sequence.
+
+## -property-value
+The list of [FrameController](framecontroller.md) objects that determine the settings for each frame in a variable photo sequence.
+
+## -remarks
+The maximum number of frame controllers that can be used at a time is 18.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/variablephotosequencecontroller_framecapabilities.md b/windows.media.devices.core/variablephotosequencecontroller_framecapabilities.md
index 077ffbece4..6e5b642a28 100644
--- a/windows.media.devices.core/variablephotosequencecontroller_framecapabilities.md
+++ b/windows.media.devices.core/variablephotosequencecontroller_framecapabilities.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.VariablePhotoSequenceController.FrameCapabilities
--api-type: winrt property
----
# Windows.Media.Devices.Core.VariablePhotoSequenceController.FrameCapabilities
## -description
Gets a [FrameControlCapabilities](framecontrolcapabilities.md) object that provides information about the variable photo sequence capabilities of the capture device.
## -property-value
A [FrameControlCapabilities](framecontrolcapabilities.md) object that provides information about the variable photo sequence capabilities of the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.VariablePhotoSequenceController.FrameCapabilities
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.VariablePhotoSequenceController.FrameCapabilities
+
+## -description
+Gets a [FrameControlCapabilities](framecontrolcapabilities.md) object that provides information about the variable photo sequence capabilities of the capture device.
+
+## -property-value
+A [FrameControlCapabilities](framecontrolcapabilities.md) object that provides information about the variable photo sequence capabilities of the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/variablephotosequencecontroller_getcurrentframerate_279282429.md b/windows.media.devices.core/variablephotosequencecontroller_getcurrentframerate_279282429.md
index 7333a39598..d0568b9490 100644
--- a/windows.media.devices.core/variablephotosequencecontroller_getcurrentframerate_279282429.md
+++ b/windows.media.devices.core/variablephotosequencecontroller_getcurrentframerate_279282429.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.Core.VariablePhotoSequenceController.GetCurrentFrameRate
--api-type: winrt method
----
# Windows.Media.Devices.Core.VariablePhotoSequenceController.GetCurrentFrameRate
## -description
Gets the current frame rate at which pictures can be taken in a variable photo sequence.
## -returns
The current frame rate at which pictures can be taken in a variable photo sequence.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.VariablePhotoSequenceController.GetCurrentFrameRate
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.VariablePhotoSequenceController.GetCurrentFrameRate
+
+## -description
+Gets the current frame rate at which pictures can be taken in a variable photo sequence.
+
+## -returns
+The current frame rate at which pictures can be taken in a variable photo sequence.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/variablephotosequencecontroller_gethighestconcurrentframerate_1293632752.md b/windows.media.devices.core/variablephotosequencecontroller_gethighestconcurrentframerate_1293632752.md
index 8080034c08..ebe316e924 100644
--- a/windows.media.devices.core/variablephotosequencecontroller_gethighestconcurrentframerate_1293632752.md
+++ b/windows.media.devices.core/variablephotosequencecontroller_gethighestconcurrentframerate_1293632752.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.Core.VariablePhotoSequenceController.GetHighestConcurrentFrameRate(Windows.Media.MediaProperties.IMediaEncodingProperties)
--api-type: winrt method
----
# Windows.Media.Devices.Core.VariablePhotoSequenceController.GetHighestConcurrentFrameRate
## -description
Gets the highest frame rate supported when video and a variable photo sequence are being captured concurrently.
## -parameters
### -param captureProperties
The media encoding properties.
## -returns
The highest supported concurrent frame rate.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.Core.VariablePhotoSequenceController.GetHighestConcurrentFrameRate(Windows.Media.MediaProperties.IMediaEncodingProperties)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.Core.VariablePhotoSequenceController.GetHighestConcurrentFrameRate
+
+## -description
+Gets the highest frame rate supported when video and a variable photo sequence are being captured concurrently.
+
+## -parameters
+### -param captureProperties
+The media encoding properties.
+
+## -returns
+The highest supported concurrent frame rate.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/variablephotosequencecontroller_maxphotospersecond.md b/windows.media.devices.core/variablephotosequencecontroller_maxphotospersecond.md
index 2b924edbe5..5063e713d7 100644
--- a/windows.media.devices.core/variablephotosequencecontroller_maxphotospersecond.md
+++ b/windows.media.devices.core/variablephotosequencecontroller_maxphotospersecond.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.Core.VariablePhotoSequenceController.MaxPhotosPerSecond
--api-type: winrt property
----
# Windows.Media.Devices.Core.VariablePhotoSequenceController.MaxPhotosPerSecond
## -description
Gets the maximum number of photos that can be taken per second in a variable photo sequence.
## -property-value
The maximum number of photos that can be taken per second in a variable photo sequence.
## -remarks
To set the frame rate of a variable photo sequence, use [PhotosPerSecondLimit](variablephotosequencecontroller_photospersecondlimit.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.VariablePhotoSequenceController.MaxPhotosPerSecond
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.VariablePhotoSequenceController.MaxPhotosPerSecond
+
+## -description
+Gets the maximum number of photos that can be taken per second in a variable photo sequence.
+
+## -property-value
+The maximum number of photos that can be taken per second in a variable photo sequence.
+
+## -remarks
+To set the frame rate of a variable photo sequence, use [PhotosPerSecondLimit](variablephotosequencecontroller_photospersecondlimit.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/variablephotosequencecontroller_photospersecondlimit.md b/windows.media.devices.core/variablephotosequencecontroller_photospersecondlimit.md
index 674f631a23..c3e317cd9b 100644
--- a/windows.media.devices.core/variablephotosequencecontroller_photospersecondlimit.md
+++ b/windows.media.devices.core/variablephotosequencecontroller_photospersecondlimit.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.Core.VariablePhotoSequenceController.PhotosPerSecondLimit
--api-type: winrt property
----
# Windows.Media.Devices.Core.VariablePhotoSequenceController.PhotosPerSecondLimit
## -description
Gets or sets the number of photos that are taken per second in a variable photo sequence.
## -property-value
The number of photos that are taken per second in a variable photo sequence.
## -remarks
To determine the maximum number of photos per second supported by the capture device, check the [MaxPhotosPerSecond](variablephotosequencecontroller_maxphotospersecond.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.VariablePhotoSequenceController.PhotosPerSecondLimit
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.VariablePhotoSequenceController.PhotosPerSecondLimit
+
+## -description
+Gets or sets the number of photos that are taken per second in a variable photo sequence.
+
+## -property-value
+The number of photos that are taken per second in a variable photo sequence.
+
+## -remarks
+To determine the maximum number of photos per second supported by the capture device, check the [MaxPhotosPerSecond](variablephotosequencecontroller_maxphotospersecond.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices.core/variablephotosequencecontroller_supported.md b/windows.media.devices.core/variablephotosequencecontroller_supported.md
index 45bc2d1fe4..faaa883d79 100644
--- a/windows.media.devices.core/variablephotosequencecontroller_supported.md
+++ b/windows.media.devices.core/variablephotosequencecontroller_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.Core.VariablePhotoSequenceController.Supported
--api-type: winrt property
----
# Windows.Media.Devices.Core.VariablePhotoSequenceController.Supported
## -description
Gets a value that indicates whether variable photo sequences are supported by the capture device.
## -property-value
A value that indicates whether variable photo sequences are supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.Core.VariablePhotoSequenceController.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.Core.VariablePhotoSequenceController.Supported
+
+## -description
+Gets a value that indicates whether variable photo sequences are supported by the capture device.
+
+## -property-value
+A value that indicates whether variable photo sequences are supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/advancedphotocapturesettings.md b/windows.media.devices/advancedphotocapturesettings.md
index 76dc504a42..df3cec254e 100644
--- a/windows.media.devices/advancedphotocapturesettings.md
+++ b/windows.media.devices/advancedphotocapturesettings.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Devices.AdvancedPhotoCaptureSettings
--api-type: winrt class
----
# Windows.Media.Devices.AdvancedPhotoCaptureSettings
## -description
Represents settings for an [AdvancedPhotoControl](advancedphotocontrol.md) object.
## -remarks
Use this class to configure an instance of the [AdvancedPhotoControl](advancedphotocontrol.md) class by passing it into the [AdvancedPhotoControl.Configure](advancedphotocontrol_configure.md) method.
For how-to guidance on using [AdvancedPhotoCapture](../windows.media.capture/advancedphotocapture.md), see [High dynamic range (HDR) and low-light photo capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/high-dynamic-range-hdr-photo-capture).
## -examples
## -see-also
[AdvancedPhotoCapture](../windows.media.capture/advancedphotocapture.md), [High dynamic range (HDR) and low-light photo capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/high-dynamic-range-hdr-photo-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.AdvancedPhotoCaptureSettings
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.AdvancedPhotoCaptureSettings
+
+## -description
+Represents settings for an [AdvancedPhotoControl](advancedphotocontrol.md) object.
+
+## -remarks
+Use this class to configure an instance of the [AdvancedPhotoControl](advancedphotocontrol.md) class by passing it into the [AdvancedPhotoControl.Configure](advancedphotocontrol_configure.md) method.
+
+For how-to guidance on using [AdvancedPhotoCapture](../windows.media.capture/advancedphotocapture.md), see [High dynamic range (HDR) and low-light photo capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/high-dynamic-range-hdr-photo-capture).
+
+## -examples
+
+## -see-also
+[AdvancedPhotoCapture](../windows.media.capture/advancedphotocapture.md), [High dynamic range (HDR) and low-light photo capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/high-dynamic-range-hdr-photo-capture)
\ No newline at end of file
diff --git a/windows.media.devices/advancedphotocapturesettings_advancedphotocapturesettings_1221375020.md b/windows.media.devices/advancedphotocapturesettings_advancedphotocapturesettings_1221375020.md
index 02eefc6068..541dfb4fd9 100644
--- a/windows.media.devices/advancedphotocapturesettings_advancedphotocapturesettings_1221375020.md
+++ b/windows.media.devices/advancedphotocapturesettings_advancedphotocapturesettings_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Devices.AdvancedPhotoCaptureSettings.#ctor
--api-type: winrt method
----
# Windows.Media.Devices.AdvancedPhotoCaptureSettings.AdvancedPhotoCaptureSettings
## -description
Initializes a new instance of the [AdvancedPhotoCaptureSettings](advancedphotocapturesettings.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.AdvancedPhotoCaptureSettings.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.AdvancedPhotoCaptureSettings.AdvancedPhotoCaptureSettings
+
+## -description
+Initializes a new instance of the [AdvancedPhotoCaptureSettings](advancedphotocapturesettings.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/advancedphotocapturesettings_mode.md b/windows.media.devices/advancedphotocapturesettings_mode.md
index 9b0ff3b012..48edb57e58 100644
--- a/windows.media.devices/advancedphotocapturesettings_mode.md
+++ b/windows.media.devices/advancedphotocapturesettings_mode.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.AdvancedPhotoCaptureSettings.Mode
--api-type: winrt property
----
# Windows.Media.Devices.AdvancedPhotoCaptureSettings.Mode
## -description
Gets or sets the advanced capture mode for which an [AdvancedPhotoControl](advancedphotocontrol.md) will be configured.
## -property-value
The advanced capture mode for which an [AdvancedPhotoControl](advancedphotocontrol.md) will be configured.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.AdvancedPhotoCaptureSettings.Mode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.AdvancedPhotoCaptureSettings.Mode
+
+## -description
+Gets or sets the advanced capture mode for which an [AdvancedPhotoControl](advancedphotocontrol.md) will be configured.
+
+## -property-value
+The advanced capture mode for which an [AdvancedPhotoControl](advancedphotocontrol.md) will be configured.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/advancedphotocontrol.md b/windows.media.devices/advancedphotocontrol.md
index 19eb18584c..894db8cb3a 100644
--- a/windows.media.devices/advancedphotocontrol.md
+++ b/windows.media.devices/advancedphotocontrol.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Devices.AdvancedPhotoControl
--api-type: winrt class
----
# Windows.Media.Devices.AdvancedPhotoControl
## -description
Provides functionality for controlling the advanced photo capture behavior on a capture device.
## -remarks
Get an instance of this class by accessing the [VideoDeviceController.AdvancedPhotoControl](videodevicecontroller_advancedphotocontrol.md) property.
For how-to guidance on using [AdvancedPhotoCapture](../windows.media.capture/advancedphotocapture.md), see [High dynamic range (HDR) and low-light photo capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/high-dynamic-range-hdr-photo-capture).
## -examples
## -see-also
[AdvancedPhotoCapture](../windows.media.capture/advancedphotocapture.md), [High dynamic range (HDR) and low-light photo capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/high-dynamic-range-hdr-photo-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.AdvancedPhotoControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.AdvancedPhotoControl
+
+## -description
+Provides functionality for controlling the advanced photo capture behavior on a capture device.
+
+## -remarks
+Get an instance of this class by accessing the [VideoDeviceController.AdvancedPhotoControl](videodevicecontroller_advancedphotocontrol.md) property.
+
+For how-to guidance on using [AdvancedPhotoCapture](../windows.media.capture/advancedphotocapture.md), see [High dynamic range (HDR) and low-light photo capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/high-dynamic-range-hdr-photo-capture).
+
+## -examples
+
+## -see-also
+[AdvancedPhotoCapture](../windows.media.capture/advancedphotocapture.md), [High dynamic range (HDR) and low-light photo capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/high-dynamic-range-hdr-photo-capture)
\ No newline at end of file
diff --git a/windows.media.devices/advancedphotocontrol_configure_232907878.md b/windows.media.devices/advancedphotocontrol_configure_232907878.md
index 943c811c82..0384d58396 100644
--- a/windows.media.devices/advancedphotocontrol_configure_232907878.md
+++ b/windows.media.devices/advancedphotocontrol_configure_232907878.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Devices.AdvancedPhotoControl.Configure(Windows.Media.Devices.AdvancedPhotoCaptureSettings)
--api-type: winrt method
----
# Windows.Media.Devices.AdvancedPhotoControl.Configure
## -description
Configures the [AdvancedPhotoControl](advancedphotocontrol.md) object with the specified settings.
## -parameters
### -param settings
The object defining the configuration settings.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.AdvancedPhotoControl.Configure(Windows.Media.Devices.AdvancedPhotoCaptureSettings)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.AdvancedPhotoControl.Configure
+
+## -description
+Configures the [AdvancedPhotoControl](advancedphotocontrol.md) object with the specified settings.
+
+## -parameters
+### -param settings
+The object defining the configuration settings.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/advancedphotocontrol_mode.md b/windows.media.devices/advancedphotocontrol_mode.md
index 684ad49db5..b847482ab3 100644
--- a/windows.media.devices/advancedphotocontrol_mode.md
+++ b/windows.media.devices/advancedphotocontrol_mode.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.AdvancedPhotoControl.Mode
--api-type: winrt property
----
# Windows.Media.Devices.AdvancedPhotoControl.Mode
## -description
Gets the current advanced capture mode of the [AdvancedPhotoControl](advancedphotocontrol.md).
## -property-value
The current advanced capture mode of the [AdvancedPhotoControl](advancedphotocontrol.md).
## -remarks
Set the advanced capture mode of the [AdvancedPhotoControl](advancedphotocontrol.md) by calling the [Configure](advancedphotocontrol_configure.md) method.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.AdvancedPhotoControl.Mode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.AdvancedPhotoControl.Mode
+
+## -description
+Gets the current advanced capture mode of the [AdvancedPhotoControl](advancedphotocontrol.md).
+
+## -property-value
+The current advanced capture mode of the [AdvancedPhotoControl](advancedphotocontrol.md).
+
+## -remarks
+Set the advanced capture mode of the [AdvancedPhotoControl](advancedphotocontrol.md) by calling the [Configure](advancedphotocontrol_configure.md) method.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/advancedphotocontrol_supported.md b/windows.media.devices/advancedphotocontrol_supported.md
index 7462c8fde5..1c67396eea 100644
--- a/windows.media.devices/advancedphotocontrol_supported.md
+++ b/windows.media.devices/advancedphotocontrol_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.AdvancedPhotoControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.AdvancedPhotoControl.Supported
## -description
Gets a value indicating whether the [AdvancedPhotoControl](advancedphotocontrol.md) is supported on the current capture device.
## -property-value
True if the [AdvancedPhotoControl](advancedphotocontrol.md) is supported; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.AdvancedPhotoControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.AdvancedPhotoControl.Supported
+
+## -description
+Gets a value indicating whether the [AdvancedPhotoControl](advancedphotocontrol.md) is supported on the current capture device.
+
+## -property-value
+True if the [AdvancedPhotoControl](advancedphotocontrol.md) is supported; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/advancedphotocontrol_supportedmodes.md b/windows.media.devices/advancedphotocontrol_supportedmodes.md
index 6527175083..52b3829f7c 100644
--- a/windows.media.devices/advancedphotocontrol_supportedmodes.md
+++ b/windows.media.devices/advancedphotocontrol_supportedmodes.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.AdvancedPhotoControl.SupportedModes
--api-type: winrt property
----
# Windows.Media.Devices.AdvancedPhotoControl.SupportedModes
## -description
Gets a list of the advanced capture modes supported by the current capture device.
## -property-value
A list of the advanced capture modes supported by the current capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.AdvancedPhotoControl.SupportedModes
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.AdvancedPhotoControl.SupportedModes
+
+## -description
+Gets a list of the advanced capture modes supported by the current capture device.
+
+## -property-value
+A list of the advanced capture modes supported by the current capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/audiodevicecontroller_getavailablemediastreamproperties_946867392.md b/windows.media.devices/audiodevicecontroller_getavailablemediastreamproperties_946867392.md
index 4b4cd9af64..bf03219786 100644
--- a/windows.media.devices/audiodevicecontroller_getavailablemediastreamproperties_946867392.md
+++ b/windows.media.devices/audiodevicecontroller_getavailablemediastreamproperties_946867392.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.AudioDeviceController.GetAvailableMediaStreamProperties(Windows.Media.Capture.MediaStreamType)
--api-type: winrt method
----
# Windows.Media.Devices.AudioDeviceController.GetAvailableMediaStreamProperties
## -description
Gets a list of the supported encoding properties for the device.
## -parameters
### -param mediaStreamType
The type of media stream for which to get the properties.
## -returns
A list of the supported encoding properties.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.AudioDeviceController.GetAvailableMediaStreamProperties(Windows.Media.Capture.MediaStreamType)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.AudioDeviceController.GetAvailableMediaStreamProperties
+
+## -description
+Gets a list of the supported encoding properties for the device.
+
+## -parameters
+### -param mediaStreamType
+The type of media stream for which to get the properties.
+
+## -returns
+A list of the supported encoding properties.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/audiodevicecontroller_getmediastreamproperties_978288466.md b/windows.media.devices/audiodevicecontroller_getmediastreamproperties_978288466.md
index 04074420a5..544f10a6c4 100644
--- a/windows.media.devices/audiodevicecontroller_getmediastreamproperties_978288466.md
+++ b/windows.media.devices/audiodevicecontroller_getmediastreamproperties_978288466.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.AudioDeviceController.GetMediaStreamProperties(Windows.Media.Capture.MediaStreamType)
--api-type: winrt method
----
# Windows.Media.Devices.AudioDeviceController.GetMediaStreamProperties
## -description
Gets the encoding properties for the specified media stream type for the device.
## -parameters
### -param mediaStreamType
The type of media stream for which to get the properties.
## -returns
The encoding properties.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.AudioDeviceController.GetMediaStreamProperties(Windows.Media.Capture.MediaStreamType)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.AudioDeviceController.GetMediaStreamProperties
+
+## -description
+Gets the encoding properties for the specified media stream type for the device.
+
+## -parameters
+### -param mediaStreamType
+The type of media stream for which to get the properties.
+
+## -returns
+The encoding properties.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/audiodevicecontroller_muted.md b/windows.media.devices/audiodevicecontroller_muted.md
index d20fe414d4..0ee537abff 100644
--- a/windows.media.devices/audiodevicecontroller_muted.md
+++ b/windows.media.devices/audiodevicecontroller_muted.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.AudioDeviceController.Muted
--api-type: winrt property
----
# Windows.Media.Devices.AudioDeviceController.Muted
## -description
Mutes or unmutes the microphone.
## -property-value
True if the microphone is muted; false otherwise.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.AudioDeviceController.Muted
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.AudioDeviceController.Muted
+
+## -description
+Mutes or unmutes the microphone.
+
+## -property-value
+True if the microphone is muted; false otherwise.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/audiodevicecontroller_setmediastreampropertiesasync_835261048.md b/windows.media.devices/audiodevicecontroller_setmediastreampropertiesasync_835261048.md
index 14aa52d993..c2b0d126ac 100644
--- a/windows.media.devices/audiodevicecontroller_setmediastreampropertiesasync_835261048.md
+++ b/windows.media.devices/audiodevicecontroller_setmediastreampropertiesasync_835261048.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.Devices.AudioDeviceController.SetMediaStreamPropertiesAsync(Windows.Media.Capture.MediaStreamType,Windows.Media.MediaProperties.IMediaEncodingProperties)
--api-type: winrt method
----
# Windows.Media.Devices.AudioDeviceController.SetMediaStreamPropertiesAsync
## -description
Sets the encoding properties asynchronously for the specified media stream type for the device.
## -parameters
### -param mediaStreamType
The type of media stream for which to set the properties.
### -param mediaEncodingProperties
The encoding properties to set.
## -returns
An [IAsyncAction](../windows.foundation/iasyncaction.md) object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.AudioDeviceController.SetMediaStreamPropertiesAsync(Windows.Media.Capture.MediaStreamType,Windows.Media.MediaProperties.IMediaEncodingProperties)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.AudioDeviceController.SetMediaStreamPropertiesAsync
+
+## -description
+Sets the encoding properties asynchronously for the specified media stream type for the device.
+
+## -parameters
+### -param mediaStreamType
+The type of media stream for which to set the properties.
+
+### -param mediaEncodingProperties
+The encoding properties to set.
+
+## -returns
+An [IAsyncAction](../windows.foundation/iasyncaction.md) object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/audiodevicecontroller_volumepercent.md b/windows.media.devices/audiodevicecontroller_volumepercent.md
index 9be1e13349..a4e70f113d 100644
--- a/windows.media.devices/audiodevicecontroller_volumepercent.md
+++ b/windows.media.devices/audiodevicecontroller_volumepercent.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.AudioDeviceController.VolumePercent
--api-type: winrt property
----
# Windows.Media.Devices.AudioDeviceController.VolumePercent
## -description
Gets or sets the volume of the microphone.
## -property-value
The volume of the microphone. The value ranges from 0.0 (silent) to 100.0 (full volume).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.AudioDeviceController.VolumePercent
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.AudioDeviceController.VolumePercent
+
+## -description
+Gets or sets the volume of the microphone.
+
+## -property-value
+The volume of the microphone. The value ranges from 0.0 (silent) to 100.0 (full volume).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/callcontrol_answerrequested.md b/windows.media.devices/callcontrol_answerrequested.md
index 0d4adf6da4..d613d36a5a 100644
--- a/windows.media.devices/callcontrol_answerrequested.md
+++ b/windows.media.devices/callcontrol_answerrequested.md
@@ -1,3 +1,21 @@
----
-api-id: E:Windows.Media.Devices.CallControl.AnswerRequested
--api-type: winrt event
----
# Windows.Media.Devices.CallControl.AnswerRequested
## -description
Occurs when the device receives a request to answer a call.
## -remarks
This class provides access to events that can be monitored and used for modifying the behavior of your telephony-aware app. The following JavaScript code snippet shows how to add event listeners to the **CallControl** class, and then to respond to one of the events, **AnswerRequested**.
## -examples
## -see-also
[CallControlEventHandler](callcontroleventhandler.md)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Devices.CallControl.AnswerRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Devices.CallControl.AnswerRequested
+
+## -description
+Occurs when the device receives a request to answer a call.
+
+## -remarks
+This class provides access to events that can be monitored and used for modifying the behavior of your telephony-aware app. The following JavaScript code snippet shows how to add event listeners to the **CallControl** class, and then to respond to one of the events, **AnswerRequested**.
+
+## -examples
+
+## -see-also
+[CallControlEventHandler](callcontroleventhandler.md)
\ No newline at end of file
diff --git a/windows.media.devices/callcontrol_audiotransferrequested.md b/windows.media.devices/callcontrol_audiotransferrequested.md
index 3e900a91bf..ccc4ba2b32 100644
--- a/windows.media.devices/callcontrol_audiotransferrequested.md
+++ b/windows.media.devices/callcontrol_audiotransferrequested.md
@@ -1,3 +1,21 @@
----
-api-id: E:Windows.Media.Devices.CallControl.AudioTransferRequested
--api-type: winrt event
----
# Windows.Media.Devices.CallControl.AudioTransferRequested
## -description
Occurs when the device receives a request for an audio transfer.
## -remarks
This class provides access to events that can be monitored and used for modifying the behavior of your telephony-aware app. The following JavaScript code snippet shows how to add event listeners to the **CallControl** class, and then to respond to one of the events, **AudioTransferRequested**.
## -examples
## -see-also
[CallControlEventHandler](callcontroleventhandler.md)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Devices.CallControl.AudioTransferRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Devices.CallControl.AudioTransferRequested
+
+## -description
+Occurs when the device receives a request for an audio transfer.
+
+## -remarks
+This class provides access to events that can be monitored and used for modifying the behavior of your telephony-aware app. The following JavaScript code snippet shows how to add event listeners to the **CallControl** class, and then to respond to one of the events, **AudioTransferRequested**.
+
+## -examples
+
+## -see-also
+[CallControlEventHandler](callcontroleventhandler.md)
\ No newline at end of file
diff --git a/windows.media.devices/callcontrol_dialrequested.md b/windows.media.devices/callcontrol_dialrequested.md
index 463c53ea66..e03af7d360 100644
--- a/windows.media.devices/callcontrol_dialrequested.md
+++ b/windows.media.devices/callcontrol_dialrequested.md
@@ -1,3 +1,21 @@
----
-api-id: E:Windows.Media.Devices.CallControl.DialRequested
--api-type: winrt event
----
# Windows.Media.Devices.CallControl.DialRequested
## -description
Occurs when a number is dialed from the device.
## -remarks
This class provides access to events that can be monitored and used for modifying the behavior of your telephony-aware app. The following JavaScript code snippet shows how to add event listeners to the **CallControl** class, and then to respond to one of the events, **DialRequested**.
## -examples
## -see-also
[DialRequestedEventHandler](dialrequestedeventhandler.md)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Devices.CallControl.DialRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Devices.CallControl.DialRequested
+
+## -description
+Occurs when a number is dialed from the device.
+
+## -remarks
+This class provides access to events that can be monitored and used for modifying the behavior of your telephony-aware app. The following JavaScript code snippet shows how to add event listeners to the **CallControl** class, and then to respond to one of the events, **DialRequested**.
+
+## -examples
+
+## -see-also
+[DialRequestedEventHandler](dialrequestedeventhandler.md)
\ No newline at end of file
diff --git a/windows.media.devices/callcontrol_endcall_107216039.md b/windows.media.devices/callcontrol_endcall_107216039.md
index e4012f5b58..e34473fd2b 100644
--- a/windows.media.devices/callcontrol_endcall_107216039.md
+++ b/windows.media.devices/callcontrol_endcall_107216039.md
@@ -1,3 +1,24 @@
----
-api-id: M:Windows.Media.Devices.CallControl.EndCall(System.UInt64)
--api-type: winrt method
----
# Windows.Media.Devices.CallControl.EndCall
## -description
Ends the specified call.
## -parameters
### -param callToken
The unique identifier of the specified call.
## -remarks
After this method is called, the *callToken* of the specified call is no longer valid.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.CallControl.EndCall(System.UInt64)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.CallControl.EndCall
+
+## -description
+Ends the specified call.
+
+## -parameters
+### -param callToken
+The unique identifier of the specified call.
+
+## -remarks
+After this method is called, the *callToken* of the specified call is no longer valid.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/callcontrol_fromid_114571398.md b/windows.media.devices/callcontrol_fromid_114571398.md
index d08f869a60..d9848cfcb5 100644
--- a/windows.media.devices/callcontrol_fromid_114571398.md
+++ b/windows.media.devices/callcontrol_fromid_114571398.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Devices.CallControl.FromId(System.String)
--api-type: winrt method
----
# Windows.Media.Devices.CallControl.FromId
## -description
Returns a [CallControl](callcontrol.md) class that represents the audio communications device specified by the [DeviceInformation ID](../windows.devices.enumeration/deviceinformation_id.md) being passed.
## -parameters
### -param deviceId
The [DeviceInformation ID](../windows.devices.enumeration/deviceinformation_id.md) of the specified audio communications device.
## -returns
A class that represents the specified audio communications device.
## -remarks
This method may return a NULL pointer if the device doesn't support this functionality.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.CallControl.FromId(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.CallControl.FromId
+
+## -description
+Returns a [CallControl](callcontrol.md) class that represents the audio communications device specified by the [DeviceInformation ID](../windows.devices.enumeration/deviceinformation_id.md) being passed.
+
+## -parameters
+### -param deviceId
+The [DeviceInformation ID](../windows.devices.enumeration/deviceinformation_id.md) of the specified audio communications device.
+
+## -returns
+A class that represents the specified audio communications device.
+
+## -remarks
+This method may return a NULL pointer if the device doesn't support this functionality.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/callcontrol_getdefault_846721868.md b/windows.media.devices/callcontrol_getdefault_846721868.md
index f5058d8ae6..3822e6729b 100644
--- a/windows.media.devices/callcontrol_getdefault_846721868.md
+++ b/windows.media.devices/callcontrol_getdefault_846721868.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Devices.CallControl.GetDefault
--api-type: winrt method
----
# Windows.Media.Devices.CallControl.GetDefault
## -description
Returns a [CallControl](callcontrol.md) class that represents the default audio communications device.
## -returns
A class that represents the default audio communications device.
## -remarks
This method may return a NULL pointer if the device doesn't support this functionality.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.CallControl.GetDefault
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.CallControl.GetDefault
+
+## -description
+Returns a [CallControl](callcontrol.md) class that represents the default audio communications device.
+
+## -returns
+A class that represents the default audio communications device.
+
+## -remarks
+This method may return a NULL pointer if the device doesn't support this functionality.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/callcontrol_hanguprequested.md b/windows.media.devices/callcontrol_hanguprequested.md
index 97b7698d22..5660d05a88 100644
--- a/windows.media.devices/callcontrol_hanguprequested.md
+++ b/windows.media.devices/callcontrol_hanguprequested.md
@@ -1,3 +1,20 @@
----
-api-id: E:Windows.Media.Devices.CallControl.HangUpRequested
--api-type: winrt event
----
# Windows.Media.Devices.CallControl.HangUpRequested
## -description
Occurs when the device receives a request to hang up a call.
## -remarks
This class provides access to events that can be monitored and used for modifying the behavior of your telephony-aware app. The following JavaScript code snippet shows how to add event listeners to the **CallControl** class, and then to respond to one of the events, **HangUpRequested**.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Devices.CallControl.HangUpRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Devices.CallControl.HangUpRequested
+
+## -description
+Occurs when the device receives a request to hang up a call.
+
+## -remarks
+This class provides access to events that can be monitored and used for modifying the behavior of your telephony-aware app. The following JavaScript code snippet shows how to add event listeners to the **CallControl** class, and then to respond to one of the events, **HangUpRequested**.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/callcontrol_hasringer.md b/windows.media.devices/callcontrol_hasringer.md
index 0bf7f5bdfc..5d92792f4c 100644
--- a/windows.media.devices/callcontrol_hasringer.md
+++ b/windows.media.devices/callcontrol_hasringer.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.CallControl.HasRinger
--api-type: winrt property
----
# Windows.Media.Devices.CallControl.HasRinger
## -description
Indicates whether the telephony device has a built-in ringer.
## -property-value
A [Boolean](https://msdn.microsoft.com/library/system.boolean.aspx) value that is **True** if the telephony device has a ringer, and **False** if it does not.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.CallControl.HasRinger
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.CallControl.HasRinger
+
+## -description
+Indicates whether the telephony device has a built-in ringer.
+
+## -property-value
+A [Boolean](https://msdn.microsoft.com/library/system.boolean.aspx) value that is **True** if the telephony device has a ringer, and **False** if it does not.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/callcontrol_indicateactivecall_1650660673.md b/windows.media.devices/callcontrol_indicateactivecall_1650660673.md
index 3813936768..4d39971d56 100644
--- a/windows.media.devices/callcontrol_indicateactivecall_1650660673.md
+++ b/windows.media.devices/callcontrol_indicateactivecall_1650660673.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Devices.CallControl.IndicateActiveCall(System.UInt64)
--api-type: winrt method
----
# Windows.Media.Devices.CallControl.IndicateActiveCall
## -description
Indicates that the specified call is now active.
## -parameters
### -param callToken
The unique identifier of the specified call.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.CallControl.IndicateActiveCall(System.UInt64)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.CallControl.IndicateActiveCall
+
+## -description
+Indicates that the specified call is now active.
+
+## -parameters
+### -param callToken
+The unique identifier of the specified call.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/callcontrol_indicatenewincomingcall_485379044.md b/windows.media.devices/callcontrol_indicatenewincomingcall_485379044.md
index 4004d2ad4b..32618ad0d3 100644
--- a/windows.media.devices/callcontrol_indicatenewincomingcall_485379044.md
+++ b/windows.media.devices/callcontrol_indicatenewincomingcall_485379044.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.Devices.CallControl.IndicateNewIncomingCall(System.Boolean,System.String)
--api-type: winrt method
----
# Windows.Media.Devices.CallControl.IndicateNewIncomingCall
## -description
Informs the device that there is an incoming call.
## -parameters
### -param enableRinger
Specifies whether the device should activate its built-in ringer.
### -param callerId
A numeric string that specifies the incoming caller ID. This parameter can be null, and often is for many VoIP calls.
## -returns
A call token that uniquely identifies this call.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.CallControl.IndicateNewIncomingCall(System.Boolean,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.CallControl.IndicateNewIncomingCall
+
+## -description
+Informs the device that there is an incoming call.
+
+## -parameters
+### -param enableRinger
+Specifies whether the device should activate its built-in ringer.
+
+### -param callerId
+A numeric string that specifies the incoming caller ID. This parameter can be null, and often is for many VoIP calls.
+
+## -returns
+A call token that uniquely identifies this call.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/callcontrol_indicatenewoutgoingcall_390393868.md b/windows.media.devices/callcontrol_indicatenewoutgoingcall_390393868.md
index 105d654ca5..9f65e71260 100644
--- a/windows.media.devices/callcontrol_indicatenewoutgoingcall_390393868.md
+++ b/windows.media.devices/callcontrol_indicatenewoutgoingcall_390393868.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Devices.CallControl.IndicateNewOutgoingCall
--api-type: winrt method
----
# Windows.Media.Devices.CallControl.IndicateNewOutgoingCall
## -description
Updates device indicators to indicate an outgoing call.
## -returns
A call token that uniquely identifies this call.
## -remarks
An application should call this method only after the dialing connection is actually initiated, and not before.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.CallControl.IndicateNewOutgoingCall
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.CallControl.IndicateNewOutgoingCall
+
+## -description
+Updates device indicators to indicate an outgoing call.
+
+## -returns
+A call token that uniquely identifies this call.
+
+## -remarks
+An application should call this method only after the dialing connection is actually initiated, and not before.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/callcontrol_keypadpressed.md b/windows.media.devices/callcontrol_keypadpressed.md
index d8ce592534..fdbd9cf58c 100644
--- a/windows.media.devices/callcontrol_keypadpressed.md
+++ b/windows.media.devices/callcontrol_keypadpressed.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Devices.CallControl.KeypadPressed
--api-type: winrt event
----
# Windows.Media.Devices.CallControl.KeypadPressed
## -description
Occurs when a keypad button on the device has been pressed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Devices.CallControl.KeypadPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Devices.CallControl.KeypadPressed
+
+## -description
+Occurs when a keypad button on the device has been pressed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/callcontrol_redialrequested.md b/windows.media.devices/callcontrol_redialrequested.md
index 8f1b692dbc..f632bbd1a4 100644
--- a/windows.media.devices/callcontrol_redialrequested.md
+++ b/windows.media.devices/callcontrol_redialrequested.md
@@ -1,3 +1,21 @@
----
-api-id: E:Windows.Media.Devices.CallControl.RedialRequested
--api-type: winrt event
----
# Windows.Media.Devices.CallControl.RedialRequested
## -description
Occurs when the device receives a request to redial.
## -remarks
This class provides access to events that can be monitored and used for modifying the behavior of your telephony-aware app. The following JavaScript code snippet shows how to add event listeners to the **CallControl** class, and then to respond to one of the events, **RedialRequested**.
## -examples
## -see-also
[How to manage calls on the default Bluetooth communications device](http://go.microsoft.com/fwlink/p/?linkid=241435), [RedialRequestedEventHandler](redialrequestedeventhandler.md)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Devices.CallControl.RedialRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Devices.CallControl.RedialRequested
+
+## -description
+Occurs when the device receives a request to redial.
+
+## -remarks
+This class provides access to events that can be monitored and used for modifying the behavior of your telephony-aware app. The following JavaScript code snippet shows how to add event listeners to the **CallControl** class, and then to respond to one of the events, **RedialRequested**.
+
+## -examples
+
+## -see-also
+[How to manage calls on the default Bluetooth communications device](http://go.microsoft.com/fwlink/p/?linkid=241435), [RedialRequestedEventHandler](redialrequestedeventhandler.md)
\ No newline at end of file
diff --git a/windows.media.devices/defaultaudiocapturedevicechangedeventargs_id.md b/windows.media.devices/defaultaudiocapturedevicechangedeventargs_id.md
index 1bcd71b467..8ebc204593 100644
--- a/windows.media.devices/defaultaudiocapturedevicechangedeventargs_id.md
+++ b/windows.media.devices/defaultaudiocapturedevicechangedeventargs_id.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.DefaultAudioCaptureDeviceChangedEventArgs.Id
--api-type: winrt property
----
# Windows.Media.Devices.DefaultAudioCaptureDeviceChangedEventArgs.Id
## -description
Gets the ID of the newly selected audio capture device that caused the change event.
## -property-value
ID of the newly selected audio capture device that caused the change event.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.DefaultAudioCaptureDeviceChangedEventArgs.Id
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.DefaultAudioCaptureDeviceChangedEventArgs.Id
+
+## -description
+Gets the ID of the newly selected audio capture device that caused the change event.
+
+## -property-value
+ID of the newly selected audio capture device that caused the change event.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/defaultaudiocapturedevicechangedeventargs_role.md b/windows.media.devices/defaultaudiocapturedevicechangedeventargs_role.md
index f0abbc50ef..d2f4ec7518 100644
--- a/windows.media.devices/defaultaudiocapturedevicechangedeventargs_role.md
+++ b/windows.media.devices/defaultaudiocapturedevicechangedeventargs_role.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.DefaultAudioCaptureDeviceChangedEventArgs.Role
--api-type: winrt property
----
# Windows.Media.Devices.DefaultAudioCaptureDeviceChangedEventArgs.Role
## -description
Gets the role of the newly selected audio capture device that caused the change event.
## -property-value
The role of the newly selected audio capture device that caused the change event.
## -remarks
## -examples
## -see-also
[AudioDeviceRole](audiodevicerole.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.DefaultAudioCaptureDeviceChangedEventArgs.Role
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.DefaultAudioCaptureDeviceChangedEventArgs.Role
+
+## -description
+Gets the role of the newly selected audio capture device that caused the change event.
+
+## -property-value
+The role of the newly selected audio capture device that caused the change event.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[AudioDeviceRole](audiodevicerole.md)
\ No newline at end of file
diff --git a/windows.media.devices/defaultaudiorenderdevicechangedeventargs_id.md b/windows.media.devices/defaultaudiorenderdevicechangedeventargs_id.md
index ca53c65afd..eb340a96fe 100644
--- a/windows.media.devices/defaultaudiorenderdevicechangedeventargs_id.md
+++ b/windows.media.devices/defaultaudiorenderdevicechangedeventargs_id.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.DefaultAudioRenderDeviceChangedEventArgs.Id
--api-type: winrt property
----
# Windows.Media.Devices.DefaultAudioRenderDeviceChangedEventArgs.Id
## -description
Gets the ID of the newly selected default audio render device that caused the change event.
## -property-value
ID of the newly selected default audio render device that caused the change event.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.DefaultAudioRenderDeviceChangedEventArgs.Id
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.DefaultAudioRenderDeviceChangedEventArgs.Id
+
+## -description
+Gets the ID of the newly selected default audio render device that caused the change event.
+
+## -property-value
+ID of the newly selected default audio render device that caused the change event.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/defaultaudiorenderdevicechangedeventargs_role.md b/windows.media.devices/defaultaudiorenderdevicechangedeventargs_role.md
index 85a0dc44bb..ffd807ffd0 100644
--- a/windows.media.devices/defaultaudiorenderdevicechangedeventargs_role.md
+++ b/windows.media.devices/defaultaudiorenderdevicechangedeventargs_role.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.DefaultAudioRenderDeviceChangedEventArgs.Role
--api-type: winrt property
----
# Windows.Media.Devices.DefaultAudioRenderDeviceChangedEventArgs.Role
## -description
Gets the role of the newly selected default audio render device that caused the change event.
## -property-value
The role of the newly selected default audio render device that caused the change event.
## -remarks
## -examples
## -see-also
[AudioDeviceRole](audiodevicerole.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.DefaultAudioRenderDeviceChangedEventArgs.Role
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.DefaultAudioRenderDeviceChangedEventArgs.Role
+
+## -description
+Gets the role of the newly selected default audio render device that caused the change event.
+
+## -property-value
+The role of the newly selected default audio render device that caused the change event.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[AudioDeviceRole](audiodevicerole.md)
\ No newline at end of file
diff --git a/windows.media.devices/dialrequestedeventargs_contact.md b/windows.media.devices/dialrequestedeventargs_contact.md
index 2a104086f3..6eb404ca45 100644
--- a/windows.media.devices/dialrequestedeventargs_contact.md
+++ b/windows.media.devices/dialrequestedeventargs_contact.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.DialRequestedEventArgs.Contact
--api-type: winrt property
----
# Windows.Media.Devices.DialRequestedEventArgs.Contact
## -description
Returns the contact that was dialed.
## -property-value
The contact.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.DialRequestedEventArgs.Contact
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.DialRequestedEventArgs.Contact
+
+## -description
+Returns the contact that was dialed.
+
+## -property-value
+The contact.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/dialrequestedeventargs_handled_1519539088.md b/windows.media.devices/dialrequestedeventargs_handled_1519539088.md
index d5f2bd8d25..31e71a83b5 100644
--- a/windows.media.devices/dialrequestedeventargs_handled_1519539088.md
+++ b/windows.media.devices/dialrequestedeventargs_handled_1519539088.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Devices.DialRequestedEventArgs.Handled
--api-type: winrt method
----
# Windows.Media.Devices.DialRequestedEventArgs.Handled
## -description
Indicates that the [DialRequested](callcontrol_dialrequested.md) event has been handled.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.DialRequestedEventArgs.Handled
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.DialRequestedEventArgs.Handled
+
+## -description
+Indicates that the [DialRequested](callcontrol_dialrequested.md) event has been handled.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecompensationcontrol.md b/windows.media.devices/exposurecompensationcontrol.md
index 22fdd0cbe4..d4a29ce4d7 100644
--- a/windows.media.devices/exposurecompensationcontrol.md
+++ b/windows.media.devices/exposurecompensationcontrol.md
@@ -1,3 +1,27 @@
----
-api-id: T:Windows.Media.Devices.ExposureCompensationControl
--api-type: winrt class
----
# Windows.Media.Devices.ExposureCompensationControl
## -description
Provides functionality for modifying exposure levels of captured photos.
## -remarks
[ExposureCompensationControl](exposurecompensationcontrol.md) enables apps to modify exposure levels of captured photos.
You can find out if a device supports this control by checking [ExposureCompensationControl.Supported](exposurecompensationcontrol_supported.md).
You can access the [ExposureCompensationControl](exposurecompensationcontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
For how-to guidance for using the **ExposureCompensationControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
## -examples
## -see-also
[MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md), [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.ExposureCompensationControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.ExposureCompensationControl
+
+## -description
+Provides functionality for modifying exposure levels of captured photos.
+
+## -remarks
+[ExposureCompensationControl](exposurecompensationcontrol.md) enables apps to modify exposure levels of captured photos.
+
+You can find out if a device supports this control by checking [ExposureCompensationControl.Supported](exposurecompensationcontrol_supported.md).
+
+You can access the [ExposureCompensationControl](exposurecompensationcontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
+
+For how-to guidance for using the **ExposureCompensationControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
+
+## -examples
+
+## -see-also
+[MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md), [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
diff --git a/windows.media.devices/exposurecompensationcontrol_max.md b/windows.media.devices/exposurecompensationcontrol_max.md
index ee5d1b11bd..21e72a02b4 100644
--- a/windows.media.devices/exposurecompensationcontrol_max.md
+++ b/windows.media.devices/exposurecompensationcontrol_max.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.ExposureCompensationControl.Max
--api-type: winrt property
----
# Windows.Media.Devices.ExposureCompensationControl.Max
## -description
Gets the maximum exposure time.
## -property-value
The maximum exposure time.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureCompensationControl.Max
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureCompensationControl.Max
+
+## -description
+Gets the maximum exposure time.
+
+## -property-value
+The maximum exposure time.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecompensationcontrol_min.md b/windows.media.devices/exposurecompensationcontrol_min.md
index 314fa0c7ef..19e58f0f84 100644
--- a/windows.media.devices/exposurecompensationcontrol_min.md
+++ b/windows.media.devices/exposurecompensationcontrol_min.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.ExposureCompensationControl.Min
--api-type: winrt property
----
# Windows.Media.Devices.ExposureCompensationControl.Min
## -description
Gets the minimum exposure time.
## -property-value
The minimum exposure time.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureCompensationControl.Min
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureCompensationControl.Min
+
+## -description
+Gets the minimum exposure time.
+
+## -property-value
+The minimum exposure time.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecompensationcontrol_setvalueasync_1046046665.md b/windows.media.devices/exposurecompensationcontrol_setvalueasync_1046046665.md
index e311d7166d..85f7f8a7c7 100644
--- a/windows.media.devices/exposurecompensationcontrol_setvalueasync_1046046665.md
+++ b/windows.media.devices/exposurecompensationcontrol_setvalueasync_1046046665.md
@@ -1,3 +1,28 @@
----
-api-id: M:Windows.Media.Devices.ExposureCompensationControl.SetValueAsync(System.Single)
--api-type: winrt method
----
# Windows.Media.Devices.ExposureCompensationControl.SetValueAsync
## -description
Asynchronously sets the exposure compensation.
## -parameters
### -param value
The exposure compensation level to set the [Value](exposurecompensationcontrol_value.md) property to. The minimum and maximum values are specified by [Min](exposurecompensationcontrol_min.md) and [Max](exposurecompensationcontrol_max.md).
## -returns
The object that is used to control the asynchronous operation.
## -remarks
The supplied value must be between [Min](exposurecompensationcontrol_min.md) and [Max](exposurecompensationcontrol_max.md), inclusive, in increments of [Step](exposurecompensationcontrol_step.md). If you supply an arbitrary value that does not meet these requirements, the value will not be rounded. Instead, an exception will be thrown.
## -examples
## -see-also
[ExposureCompensationControl.Value](exposurecompensationcontrol_value.md), [Min](exposurecompensationcontrol_min.md), [Max](exposurecompensationcontrol_max.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.ExposureCompensationControl.SetValueAsync(System.Single)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.ExposureCompensationControl.SetValueAsync
+
+## -description
+Asynchronously sets the exposure compensation.
+
+## -parameters
+### -param value
+The exposure compensation level to set the [Value](exposurecompensationcontrol_value.md) property to. The minimum and maximum values are specified by [Min](exposurecompensationcontrol_min.md) and [Max](exposurecompensationcontrol_max.md).
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+The supplied value must be between [Min](exposurecompensationcontrol_min.md) and [Max](exposurecompensationcontrol_max.md), inclusive, in increments of [Step](exposurecompensationcontrol_step.md). If you supply an arbitrary value that does not meet these requirements, the value will not be rounded. Instead, an exception will be thrown.
+
+## -examples
+
+## -see-also
+[ExposureCompensationControl.Value](exposurecompensationcontrol_value.md), [Min](exposurecompensationcontrol_min.md), [Max](exposurecompensationcontrol_max.md)
\ No newline at end of file
diff --git a/windows.media.devices/exposurecompensationcontrol_step.md b/windows.media.devices/exposurecompensationcontrol_step.md
index 9fde16dacb..2bbe8f0a0e 100644
--- a/windows.media.devices/exposurecompensationcontrol_step.md
+++ b/windows.media.devices/exposurecompensationcontrol_step.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.ExposureCompensationControl.Step
--api-type: winrt property
----
# Windows.Media.Devices.ExposureCompensationControl.Step
## -description
Gets the smallest exposure compensation increment supported by the capture device.
## -property-value
The smallest exposure compensation increment.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureCompensationControl.Step
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureCompensationControl.Step
+
+## -description
+Gets the smallest exposure compensation increment supported by the capture device.
+
+## -property-value
+The smallest exposure compensation increment.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecompensationcontrol_supported.md b/windows.media.devices/exposurecompensationcontrol_supported.md
index dd7177719a..9a2fc74673 100644
--- a/windows.media.devices/exposurecompensationcontrol_supported.md
+++ b/windows.media.devices/exposurecompensationcontrol_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.ExposureCompensationControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.ExposureCompensationControl.Supported
## -description
Gets a value that specifies if the capture device supports the exposure compensation control.
## -property-value
**true** if the exposure compensation control is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureCompensationControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureCompensationControl.Supported
+
+## -description
+Gets a value that specifies if the capture device supports the exposure compensation control.
+
+## -property-value
+**true** if the exposure compensation control is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecompensationcontrol_value.md b/windows.media.devices/exposurecompensationcontrol_value.md
index 42be180fd1..cb84799e05 100644
--- a/windows.media.devices/exposurecompensationcontrol_value.md
+++ b/windows.media.devices/exposurecompensationcontrol_value.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.ExposureCompensationControl.Value
--api-type: winrt property
----
# Windows.Media.Devices.ExposureCompensationControl.Value
## -description
Gets the exposure compensation level.
## -property-value
The exposure time.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureCompensationControl.Value
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureCompensationControl.Value
+
+## -description
+Gets the exposure compensation level.
+
+## -property-value
+The exposure time.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecontrol.md b/windows.media.devices/exposurecontrol.md
index 14f24bd02e..0051ac411a 100644
--- a/windows.media.devices/exposurecontrol.md
+++ b/windows.media.devices/exposurecontrol.md
@@ -1,3 +1,31 @@
----
-api-id: T:Windows.Media.Devices.ExposureControl
--api-type: winrt class
----
# Windows.Media.Devices.ExposureControl
## -description
Provides functionality for controlling the exposure settings on a capture device.
## -remarks
The [ExposureControl](exposurecontrol.md) gives apps additional control over the exposure settings on a device.
To set an exposure value, call [SetValueAsync](exposurecontrol_setvalueasync.md). To turn auto exposure on, call [SetAutoAsync](exposurecontrol_setautoasync.md).
You can find out if a device supports this control by checking [ExposureControl.Supported](exposurecontrol_supported.md).
If the device does not support the [ExposureControl](exposurecontrol.md), you can still use the [Exposure](videodevicecontroller_exposure.md) property on the [VideoCaptureDevice](XREF:TODO:wp_media_capture.audiovideocapturedevice) to set the exposure value.
You can access the [ExposureControl](exposurecontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
For how-to guidance for using the **ExposureControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
## -examples
## -see-also
[Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.ExposureControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.ExposureControl
+
+## -description
+Provides functionality for controlling the exposure settings on a capture device.
+
+## -remarks
+The [ExposureControl](exposurecontrol.md) gives apps additional control over the exposure settings on a device.
+
+To set an exposure value, call [SetValueAsync](exposurecontrol_setvalueasync.md). To turn auto exposure on, call [SetAutoAsync](exposurecontrol_setautoasync.md).
+
+You can find out if a device supports this control by checking [ExposureControl.Supported](exposurecontrol_supported.md).
+
+If the device does not support the [ExposureControl](exposurecontrol.md), you can still use the [Exposure](videodevicecontroller_exposure.md) property on the [VideoCaptureDevice](XREF:TODO:wp_media_capture.audiovideocapturedevice) to set the exposure value.
+
+You can access the [ExposureControl](exposurecontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
+
+For how-to guidance for using the **ExposureControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
+
+## -examples
+
+## -see-also
+[Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
diff --git a/windows.media.devices/exposurecontrol_auto.md b/windows.media.devices/exposurecontrol_auto.md
index 5029858880..dfc6c59703 100644
--- a/windows.media.devices/exposurecontrol_auto.md
+++ b/windows.media.devices/exposurecontrol_auto.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.ExposureControl.Auto
--api-type: winrt property
----
# Windows.Media.Devices.ExposureControl.Auto
## -description
Gets a value that indicates if auto exposure is enabled.
## -property-value
**true** if auto exposure is enabled; otherwise, **false**.
## -remarks
Automatic exposure mode is only supported while the preview stream is running. Check to make sure that the preview stream is running before turning on automatic exposure.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureControl.Auto
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureControl.Auto
+
+## -description
+Gets a value that indicates if auto exposure is enabled.
+
+## -property-value
+**true** if auto exposure is enabled; otherwise, **false**.
+
+## -remarks
+Automatic exposure mode is only supported while the preview stream is running. Check to make sure that the preview stream is running before turning on automatic exposure.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecontrol_max.md b/windows.media.devices/exposurecontrol_max.md
index 1532135cb9..3d58d5fced 100644
--- a/windows.media.devices/exposurecontrol_max.md
+++ b/windows.media.devices/exposurecontrol_max.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.ExposureControl.Max
--api-type: winrt property
----
# Windows.Media.Devices.ExposureControl.Max
## -description
Gets the maximum exposure time.
## -property-value
The maximum exposure time.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureControl.Max
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureControl.Max
+
+## -description
+Gets the maximum exposure time.
+
+## -property-value
+The maximum exposure time.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecontrol_min.md b/windows.media.devices/exposurecontrol_min.md
index 701f87076b..a570ac2bab 100644
--- a/windows.media.devices/exposurecontrol_min.md
+++ b/windows.media.devices/exposurecontrol_min.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.ExposureControl.Min
--api-type: winrt property
----
# Windows.Media.Devices.ExposureControl.Min
## -description
Gets the minimum exposure time.
## -property-value
The minimum exposure time.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureControl.Min
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureControl.Min
+
+## -description
+Gets the minimum exposure time.
+
+## -property-value
+The minimum exposure time.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecontrol_setautoasync_1168787363.md b/windows.media.devices/exposurecontrol_setautoasync_1168787363.md
index 71ba7aeda4..dfc63aac5f 100644
--- a/windows.media.devices/exposurecontrol_setautoasync_1168787363.md
+++ b/windows.media.devices/exposurecontrol_setautoasync_1168787363.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Devices.ExposureControl.SetAutoAsync(System.Boolean)
--api-type: winrt method
----
# Windows.Media.Devices.ExposureControl.SetAutoAsync
## -description
Asynchronously enables or disable auto exposure.
## -parameters
### -param value
Specifies whether or not to enable or disable auto exposure.
## -returns
The object that is used to control the asynchronous operation.
## -remarks
Automatic exposure adjustment is only supported while the preview stream is running. Check to make sure that the preview stream is running before turning on automatic exposure mode.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.ExposureControl.SetAutoAsync(System.Boolean)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.ExposureControl.SetAutoAsync
+
+## -description
+Asynchronously enables or disable auto exposure.
+
+## -parameters
+### -param value
+Specifies whether or not to enable or disable auto exposure.
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+Automatic exposure adjustment is only supported while the preview stream is running. Check to make sure that the preview stream is running before turning on automatic exposure mode.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecontrol_setvalueasync_1247308686.md b/windows.media.devices/exposurecontrol_setvalueasync_1247308686.md
index e04ca1359f..618cf51641 100644
--- a/windows.media.devices/exposurecontrol_setvalueasync_1247308686.md
+++ b/windows.media.devices/exposurecontrol_setvalueasync_1247308686.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Devices.ExposureControl.SetValueAsync(Windows.Foundation.TimeSpan)
--api-type: winrt method
----
# Windows.Media.Devices.ExposureControl.SetValueAsync
## -description
Asynchronously sets the exposure time.
## -parameters
### -param shutterDuration
The exposure time to set the [Value](exposurecontrol_value.md) property to. The minimum and maximum values are specified by [Min](exposurecontrol_min.md) and [Max](exposurecontrol_max.md).
## -returns
The object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
[ExposureControl.Value](exposurecontrol_value.md), [Min](exposurecontrol_min.md), [Max](exposurecontrol_max.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.ExposureControl.SetValueAsync(Windows.Foundation.TimeSpan)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.ExposureControl.SetValueAsync
+
+## -description
+Asynchronously sets the exposure time.
+
+## -parameters
+### -param shutterDuration
+The exposure time to set the [Value](exposurecontrol_value.md) property to. The minimum and maximum values are specified by [Min](exposurecontrol_min.md) and [Max](exposurecontrol_max.md).
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[ExposureControl.Value](exposurecontrol_value.md), [Min](exposurecontrol_min.md), [Max](exposurecontrol_max.md)
\ No newline at end of file
diff --git a/windows.media.devices/exposurecontrol_step.md b/windows.media.devices/exposurecontrol_step.md
index a89d5ac013..1fae4b7393 100644
--- a/windows.media.devices/exposurecontrol_step.md
+++ b/windows.media.devices/exposurecontrol_step.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.ExposureControl.Step
--api-type: winrt property
----
# Windows.Media.Devices.ExposureControl.Step
## -description
Gets the smallest exposure time increment supported by the capture device.
## -property-value
The smallest exposure time increment.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureControl.Step
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureControl.Step
+
+## -description
+Gets the smallest exposure time increment supported by the capture device.
+
+## -property-value
+The smallest exposure time increment.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecontrol_supported.md b/windows.media.devices/exposurecontrol_supported.md
index 294acb4115..27bc8fa9a4 100644
--- a/windows.media.devices/exposurecontrol_supported.md
+++ b/windows.media.devices/exposurecontrol_supported.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.ExposureControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.ExposureControl.Supported
## -description
Gets a value that specifies if the capture device supports the exposure control.
## -property-value
**true** if the exposure control is supported; otherwise, **false**.
## -remarks
If the device does not support the [ExposureControl](exposurecontrol.md), you can still use the [Exposure](videodevicecontroller_exposure.md) property on the [VideoCaptureDevice](XREF:TODO:wp_media_capture.audiovideocapturedevice) to set the exposure value.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureControl.Supported
+
+## -description
+Gets a value that specifies if the capture device supports the exposure control.
+
+## -property-value
+**true** if the exposure control is supported; otherwise, **false**.
+
+## -remarks
+If the device does not support the [ExposureControl](exposurecontrol.md), you can still use the [Exposure](videodevicecontroller_exposure.md) property on the [VideoCaptureDevice](XREF:TODO:wp_media_capture.audiovideocapturedevice) to set the exposure value.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurecontrol_value.md b/windows.media.devices/exposurecontrol_value.md
index f377a00ab3..c50d513ff3 100644
--- a/windows.media.devices/exposurecontrol_value.md
+++ b/windows.media.devices/exposurecontrol_value.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.ExposureControl.Value
--api-type: winrt property
----
# Windows.Media.Devices.ExposureControl.Value
## -description
Gets the exposure time.
## -property-value
The exposure time.
## -remarks
To set an exposure value, call [SetValueAsync](exposurecontrol_setvalueasync.md) specifying a value between the [Min](exposurecontrol_min.md) and [Max](exposurecontrol_max.md) exposure values. To turn auto exposure on, call [SetAutoAsync](exposurecontrol_setautoasync.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposureControl.Value
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposureControl.Value
+
+## -description
+Gets the exposure time.
+
+## -property-value
+The exposure time.
+
+## -remarks
+To set an exposure value, call [SetValueAsync](exposurecontrol_setvalueasync.md) specifying a value between the [Min](exposurecontrol_min.md) and [Max](exposurecontrol_max.md) exposure values. To turn auto exposure on, call [SetAutoAsync](exposurecontrol_setautoasync.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurepriorityvideocontrol.md b/windows.media.devices/exposurepriorityvideocontrol.md
index 734ee52e39..263de29bb0 100644
--- a/windows.media.devices/exposurepriorityvideocontrol.md
+++ b/windows.media.devices/exposurepriorityvideocontrol.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Devices.ExposurePriorityVideoControl
--api-type: winrt class
----
# Windows.Media.Devices.ExposurePriorityVideoControl
## -description
When supported, allows an app to specify whether the camera driver can dynamically adjust the frame rate of video capture in order to improve video quality in low-light conditions.
## -remarks
When the [ExposurePriorityVideoControl](exposurepriorityvideocontrol.md) is enabled, the driver may adjust the frame rate in order to compensate for low-light conditions. Apps that require a constant frame rate should disable this control.
For how-to guidance for using manual video capture controls, see [Manual camera controls for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-video-capture).
## -examples
## -see-also
[Manual camera controls for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-video-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.ExposurePriorityVideoControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.ExposurePriorityVideoControl
+
+## -description
+When supported, allows an app to specify whether the camera driver can dynamically adjust the frame rate of video capture in order to improve video quality in low-light conditions.
+
+## -remarks
+When the [ExposurePriorityVideoControl](exposurepriorityvideocontrol.md) is enabled, the driver may adjust the frame rate in order to compensate for low-light conditions. Apps that require a constant frame rate should disable this control.
+
+For how-to guidance for using manual video capture controls, see [Manual camera controls for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-video-capture).
+
+## -examples
+
+## -see-also
+[Manual camera controls for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-video-capture)
\ No newline at end of file
diff --git a/windows.media.devices/exposurepriorityvideocontrol_enabled.md b/windows.media.devices/exposurepriorityvideocontrol_enabled.md
index be0b4a9b2f..ed04bd6807 100644
--- a/windows.media.devices/exposurepriorityvideocontrol_enabled.md
+++ b/windows.media.devices/exposurepriorityvideocontrol_enabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.ExposurePriorityVideoControl.Enabled
--api-type: winrt property
----
# Windows.Media.Devices.ExposurePriorityVideoControl.Enabled
## -description
Gets or sets a value that specifies if [ExposurePriorityVideoControl](exposurepriorityvideocontrol.md) is enabled.
## -property-value
True if [ExposurePriorityVideoControl](exposurepriorityvideocontrol.md) is enabled; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposurePriorityVideoControl.Enabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposurePriorityVideoControl.Enabled
+
+## -description
+Gets or sets a value that specifies if [ExposurePriorityVideoControl](exposurepriorityvideocontrol.md) is enabled.
+
+## -property-value
+True if [ExposurePriorityVideoControl](exposurepriorityvideocontrol.md) is enabled; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/exposurepriorityvideocontrol_supported.md b/windows.media.devices/exposurepriorityvideocontrol_supported.md
index 3013328384..d35bc18be3 100644
--- a/windows.media.devices/exposurepriorityvideocontrol_supported.md
+++ b/windows.media.devices/exposurepriorityvideocontrol_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.ExposurePriorityVideoControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.ExposurePriorityVideoControl.Supported
## -description
Gets or sets a value that specifies if [ExposurePriorityVideoControl](exposurepriorityvideocontrol.md) is supported on the current device.
## -property-value
True if the [ExposurePriorityVideoControl](exposurepriorityvideocontrol.md) is supported; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.ExposurePriorityVideoControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.ExposurePriorityVideoControl.Supported
+
+## -description
+Gets or sets a value that specifies if [ExposurePriorityVideoControl](exposurepriorityvideocontrol.md) is supported on the current device.
+
+## -property-value
+True if the [ExposurePriorityVideoControl](exposurepriorityvideocontrol.md) is supported; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/flashcontrol.md b/windows.media.devices/flashcontrol.md
index 1f7f02ae70..862ada8528 100644
--- a/windows.media.devices/flashcontrol.md
+++ b/windows.media.devices/flashcontrol.md
@@ -1,3 +1,27 @@
----
-api-id: T:Windows.Media.Devices.FlashControl
--api-type: winrt class
----
# Windows.Media.Devices.FlashControl
## -description
Provides functionality for controlling the flash settings on a capture device.
## -remarks
The [FlashControl](flashcontrol.md) enable apps to manage the flash on a device. This can be used in a photo app to handle low-light conditions or for [RedEyeReduction](flashcontrol_redeyereduction.md).
You can find out if a device supports this control by checking [FlashControl.Supported](flashcontrol_supported.md).
You can access the [FlashControl](flashcontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
For how-to guidance for using the **FlashControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
## -examples
## -see-also
[Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.FlashControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.FlashControl
+
+## -description
+Provides functionality for controlling the flash settings on a capture device.
+
+## -remarks
+The [FlashControl](flashcontrol.md) enable apps to manage the flash on a device. This can be used in a photo app to handle low-light conditions or for [RedEyeReduction](flashcontrol_redeyereduction.md).
+
+You can find out if a device supports this control by checking [FlashControl.Supported](flashcontrol_supported.md).
+
+You can access the [FlashControl](flashcontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
+
+For how-to guidance for using the **FlashControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
+
+## -examples
+
+## -see-also
+[Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
diff --git a/windows.media.devices/flashcontrol_assistantlightenabled.md b/windows.media.devices/flashcontrol_assistantlightenabled.md
index d33cd54e21..fe55948e2c 100644
--- a/windows.media.devices/flashcontrol_assistantlightenabled.md
+++ b/windows.media.devices/flashcontrol_assistantlightenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FlashControl.AssistantLightEnabled
--api-type: winrt property
----
# Windows.Media.Devices.FlashControl.AssistantLightEnabled
## -description
Gets or sets a value indicating whether focus assist light is enabled on the capture device.
## -property-value
A value indicating whether focus assist light is enabled on the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FlashControl.AssistantLightEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FlashControl.AssistantLightEnabled
+
+## -description
+Gets or sets a value indicating whether focus assist light is enabled on the capture device.
+
+## -property-value
+A value indicating whether focus assist light is enabled on the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/flashcontrol_assistantlightsupported.md b/windows.media.devices/flashcontrol_assistantlightsupported.md
index 0228f15050..cc57254a29 100644
--- a/windows.media.devices/flashcontrol_assistantlightsupported.md
+++ b/windows.media.devices/flashcontrol_assistantlightsupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FlashControl.AssistantLightSupported
--api-type: winrt property
----
# Windows.Media.Devices.FlashControl.AssistantLightSupported
## -description
Gets a value indicating whether focus assist light is supported by the capture device.
## -property-value
A value indicating whether focus assist light is supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FlashControl.AssistantLightSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FlashControl.AssistantLightSupported
+
+## -description
+Gets a value indicating whether focus assist light is supported by the capture device.
+
+## -property-value
+A value indicating whether focus assist light is supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/flashcontrol_auto.md b/windows.media.devices/flashcontrol_auto.md
index 6afbcb8eb7..8491455ae5 100644
--- a/windows.media.devices/flashcontrol_auto.md
+++ b/windows.media.devices/flashcontrol_auto.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.FlashControl.Auto
--api-type: winrt property
----
# Windows.Media.Devices.FlashControl.Auto
## -description
Gets or sets a value that specifies if flash is automatically set.
## -property-value
**true** if auto flash is set; otherwise, **false**.
## -remarks
You should check the value of the [FlashControl](flashcontrol.md) object's [Supported](flashcontrol_supported.md) property before attempting to access this property. If [Supported](flashcontrol_supported.md) is false, attempting to access this property will throw an exception.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FlashControl.Auto
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FlashControl.Auto
+
+## -description
+Gets or sets a value that specifies if flash is automatically set.
+
+## -property-value
+**true** if auto flash is set; otherwise, **false**.
+
+## -remarks
+You should check the value of the [FlashControl](flashcontrol.md) object's [Supported](flashcontrol_supported.md) property before attempting to access this property. If [Supported](flashcontrol_supported.md) is false, attempting to access this property will throw an exception.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/flashcontrol_enabled.md b/windows.media.devices/flashcontrol_enabled.md
index b58e59f404..2bc39da545 100644
--- a/windows.media.devices/flashcontrol_enabled.md
+++ b/windows.media.devices/flashcontrol_enabled.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.FlashControl.Enabled
--api-type: winrt property
----
# Windows.Media.Devices.FlashControl.Enabled
## -description
Gets a value that specifies if the flash on the capture device is enabled or disabled.
## -property-value
**true** if the flash is enabled; otherwise, **false**.
## -remarks
You should check the value of the [FlashControl](flashcontrol.md) object's [Supported](flashcontrol_supported.md) property before attempting to access this property. If [Supported](flashcontrol_supported.md) is false, attempting to access this property will throw an exception.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FlashControl.Enabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FlashControl.Enabled
+
+## -description
+Gets a value that specifies if the flash on the capture device is enabled or disabled.
+
+## -property-value
+**true** if the flash is enabled; otherwise, **false**.
+
+## -remarks
+You should check the value of the [FlashControl](flashcontrol.md) object's [Supported](flashcontrol_supported.md) property before attempting to access this property. If [Supported](flashcontrol_supported.md) is false, attempting to access this property will throw an exception.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/flashcontrol_powerpercent.md b/windows.media.devices/flashcontrol_powerpercent.md
index 76ec5d9a5b..f43ac82f2c 100644
--- a/windows.media.devices/flashcontrol_powerpercent.md
+++ b/windows.media.devices/flashcontrol_powerpercent.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.FlashControl.PowerPercent
--api-type: winrt property
----
# Windows.Media.Devices.FlashControl.PowerPercent
## -description
Gets or sets the intensity of the flash.
## -property-value
The power percent the torch LED is set to.
## -remarks
You should check the value of the [FlashControl](flashcontrol.md) object's [PowerSupported](flashcontrol_powersupported.md) property before attempting to access this property. If [PowerSupported](flashcontrol_powersupported.md) is false, attempting to access this property will throw an exception.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FlashControl.PowerPercent
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FlashControl.PowerPercent
+
+## -description
+Gets or sets the intensity of the flash.
+
+## -property-value
+The power percent the torch LED is set to.
+
+## -remarks
+You should check the value of the [FlashControl](flashcontrol.md) object's [PowerSupported](flashcontrol_powersupported.md) property before attempting to access this property. If [PowerSupported](flashcontrol_powersupported.md) is false, attempting to access this property will throw an exception.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/flashcontrol_powersupported.md b/windows.media.devices/flashcontrol_powersupported.md
index 6ac03f0b9b..50195c0738 100644
--- a/windows.media.devices/flashcontrol_powersupported.md
+++ b/windows.media.devices/flashcontrol_powersupported.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.FlashControl.PowerSupported
--api-type: winrt property
----
# Windows.Media.Devices.FlashControl.PowerSupported
## -description
Gets a value that specifics if the device allows the torch LED power settings to be changed.
## -property-value
**true** if the device allows the torch LED power settings to be changed; otherwise, **false**.
## -remarks
You should check the value of the [FlashControl](flashcontrol.md) object's [Supported](flashcontrol_supported.md) property before attempting to access this property. If [Supported](flashcontrol_supported.md) is false, attempting to access this property will throw an exception.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FlashControl.PowerSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FlashControl.PowerSupported
+
+## -description
+Gets a value that specifics if the device allows the torch LED power settings to be changed.
+
+## -property-value
+**true** if the device allows the torch LED power settings to be changed; otherwise, **false**.
+
+## -remarks
+You should check the value of the [FlashControl](flashcontrol.md) object's [Supported](flashcontrol_supported.md) property before attempting to access this property. If [Supported](flashcontrol_supported.md) is false, attempting to access this property will throw an exception.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/flashcontrol_redeyereduction.md b/windows.media.devices/flashcontrol_redeyereduction.md
index 3fc7ab9bdc..1e94a9fc92 100644
--- a/windows.media.devices/flashcontrol_redeyereduction.md
+++ b/windows.media.devices/flashcontrol_redeyereduction.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.FlashControl.RedEyeReduction
--api-type: winrt property
----
# Windows.Media.Devices.FlashControl.RedEyeReduction
## -description
Gets a value that specifies if the red eye reduction is enabled or disabled.
## -property-value
**true** if red eye reduction is enabled; otherwise, **false**.
## -remarks
You should check the value of the [FlashControl](flashcontrol.md) object's [RedEyeReductionSupported](flashcontrol_redeyereductionsupported.md) property before attempting to access this property. If [RedEyeReductionSupported](flashcontrol_redeyereductionsupported.md) is false, attempting to access this property will throw an exception.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FlashControl.RedEyeReduction
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FlashControl.RedEyeReduction
+
+## -description
+Gets a value that specifies if the red eye reduction is enabled or disabled.
+
+## -property-value
+**true** if red eye reduction is enabled; otherwise, **false**.
+
+## -remarks
+You should check the value of the [FlashControl](flashcontrol.md) object's [RedEyeReductionSupported](flashcontrol_redeyereductionsupported.md) property before attempting to access this property. If [RedEyeReductionSupported](flashcontrol_redeyereductionsupported.md) is false, attempting to access this property will throw an exception.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/flashcontrol_redeyereductionsupported.md b/windows.media.devices/flashcontrol_redeyereductionsupported.md
index 9eb50c670c..332c3ff31c 100644
--- a/windows.media.devices/flashcontrol_redeyereductionsupported.md
+++ b/windows.media.devices/flashcontrol_redeyereductionsupported.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.FlashControl.RedEyeReductionSupported
--api-type: winrt property
----
# Windows.Media.Devices.FlashControl.RedEyeReductionSupported
## -description
Gets a value that specifies if the capture device supports red eye reduction.
## -property-value
**true** if the capture device supports red eye reduction; otherwise, **false**.
## -remarks
You should check the value of the [FlashControl](flashcontrol.md) object's [Supported](flashcontrol_supported.md) property before attempting to access this property. If [Supported](flashcontrol_supported.md) is false, attempting to access this property will throw an exception.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FlashControl.RedEyeReductionSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FlashControl.RedEyeReductionSupported
+
+## -description
+Gets a value that specifies if the capture device supports red eye reduction.
+
+## -property-value
+**true** if the capture device supports red eye reduction; otherwise, **false**.
+
+## -remarks
+You should check the value of the [FlashControl](flashcontrol.md) object's [Supported](flashcontrol_supported.md) property before attempting to access this property. If [Supported](flashcontrol_supported.md) is false, attempting to access this property will throw an exception.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/flashcontrol_supported.md b/windows.media.devices/flashcontrol_supported.md
index 10f2135539..76d5089c1e 100644
--- a/windows.media.devices/flashcontrol_supported.md
+++ b/windows.media.devices/flashcontrol_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FlashControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.FlashControl.Supported
## -description
Gets a value that specifies if the capture device supports the flash control.
## -property-value
**true** if the capture device supports the [FlashControl](flashcontrol.md); otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FlashControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FlashControl.Supported
+
+## -description
+Gets a value that specifies if the capture device supports the flash control.
+
+## -property-value
+**true** if the capture device supports the [FlashControl](flashcontrol.md); otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol.md b/windows.media.devices/focuscontrol.md
index a9cb0d87cf..806194d209 100644
--- a/windows.media.devices/focuscontrol.md
+++ b/windows.media.devices/focuscontrol.md
@@ -1,3 +1,31 @@
----
-api-id: T:Windows.Media.Devices.FocusControl
--api-type: winrt class
----
# Windows.Media.Devices.FocusControl
## -description
Provides functionality for controlling the focus settings on a capture device.
## -remarks
You can find out if a device supports this control by checking [FocusControl.Supported](focuscontrol_supported.md).
If the device does not support the [FocusControl](focuscontrol.md), you can still use the [Focus](videodevicecontroller_focus.md) property on the [VideoCaptureDevice](XREF:TODO:wp_media_capture.audiovideocapturedevice) to set the focus value.
You can access the [FocusControl](focuscontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
The [FocusControl](focuscontrol.md) gives apps additional control over the focus settings on a device.
You can use one of the [FocusPreset](focuspreset.md) values by calling [SetPresetAsync](focuscontrol_setpresetasync.md). Or call [SetValueAsync](focuscontrol_setvalueasync.md) to set a specific [Value](focuscontrol_value.md) between the [Min](focuscontrol_min.md) and [Max](focuscontrol_max.md).
For how-to guidance for using the **FocusControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
## -examples
## -see-also
[MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md), [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.FocusControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.FocusControl
+
+## -description
+Provides functionality for controlling the focus settings on a capture device.
+
+## -remarks
+You can find out if a device supports this control by checking [FocusControl.Supported](focuscontrol_supported.md).
+
+If the device does not support the [FocusControl](focuscontrol.md), you can still use the [Focus](videodevicecontroller_focus.md) property on the [VideoCaptureDevice](XREF:TODO:wp_media_capture.audiovideocapturedevice) to set the focus value.
+
+You can access the [FocusControl](focuscontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
+
+The [FocusControl](focuscontrol.md) gives apps additional control over the focus settings on a device.
+
+You can use one of the [FocusPreset](focuspreset.md) values by calling [SetPresetAsync](focuscontrol_setpresetasync.md). Or call [SetValueAsync](focuscontrol_setvalueasync.md) to set a specific [Value](focuscontrol_value.md) between the [Min](focuscontrol_min.md) and [Max](focuscontrol_max.md).
+
+For how-to guidance for using the **FocusControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
+
+## -examples
+
+## -see-also
+[MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md), [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
diff --git a/windows.media.devices/focuscontrol_configure_1968380006.md b/windows.media.devices/focuscontrol_configure_1968380006.md
index 2337d4c03e..0f6e9ae0fb 100644
--- a/windows.media.devices/focuscontrol_configure_1968380006.md
+++ b/windows.media.devices/focuscontrol_configure_1968380006.md
@@ -1,3 +1,24 @@
----
-api-id: M:Windows.Media.Devices.FocusControl.Configure(Windows.Media.Devices.FocusSettings)
--api-type: winrt method
----
# Windows.Media.Devices.FocusControl.Configure
## -description
Configures the [FocusControl](focuscontrol.md) object with values specified in the provided [FocusSettings](focussettings.md) object.
## -parameters
### -param settings
The focus settings to use to configure the [FocusControl](focuscontrol.md) object.
## -remarks
Autofocus mode, enabled by using the [FocusMode.Continuous](focusmode.md) value in the [FocusSettings](focussettings.md) object supplied to this method, is only supported while the preview stream is running. Check to make sure that the preview stream is running before turning on continuous autofocus.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.FocusControl.Configure(Windows.Media.Devices.FocusSettings)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.FocusControl.Configure
+
+## -description
+Configures the [FocusControl](focuscontrol.md) object with values specified in the provided [FocusSettings](focussettings.md) object.
+
+## -parameters
+### -param settings
+The focus settings to use to configure the [FocusControl](focuscontrol.md) object.
+
+## -remarks
+Autofocus mode, enabled by using the [FocusMode.Continuous](focusmode.md) value in the [FocusSettings](focussettings.md) object supplied to this method, is only supported while the preview stream is running. Check to make sure that the preview stream is running before turning on continuous autofocus.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_focusasync_1413167028.md b/windows.media.devices/focuscontrol_focusasync_1413167028.md
index 706ae078ab..344e0b5090 100644
--- a/windows.media.devices/focuscontrol_focusasync_1413167028.md
+++ b/windows.media.devices/focuscontrol_focusasync_1413167028.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.FocusControl.FocusAsync
--api-type: winrt method
----
# Windows.Media.Devices.FocusControl.FocusAsync
## -description
Asynchronously focuses the device.
## -returns
The object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.FocusControl.FocusAsync
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.FocusControl.FocusAsync
+
+## -description
+Asynchronously focuses the device.
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_focuschangedsupported.md b/windows.media.devices/focuscontrol_focuschangedsupported.md
index c35f794743..74b222548d 100644
--- a/windows.media.devices/focuscontrol_focuschangedsupported.md
+++ b/windows.media.devices/focuscontrol_focuschangedsupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.FocusChangedSupported
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.FocusChangedSupported
## -description
Gets a value that specifics if the capture device supports the [FocusChanged](../windows.media.capture/mediacapture_focuschanged.md) event.
## -property-value
**true** if the focus changed event is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.FocusChangedSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.FocusChangedSupported
+
+## -description
+Gets a value that specifics if the capture device supports the [FocusChanged](../windows.media.capture/mediacapture_focuschanged.md) event.
+
+## -property-value
+**true** if the focus changed event is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_focusstate.md b/windows.media.devices/focuscontrol_focusstate.md
index 79fa6f2b3c..f6f14b5d1e 100644
--- a/windows.media.devices/focuscontrol_focusstate.md
+++ b/windows.media.devices/focuscontrol_focusstate.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.FocusState
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.FocusState
## -description
Gets a [MediaCaptureFocusState](mediacapturefocusstate.md) value indicating the current focus state of the capture device.
## -property-value
A value indicating the current focus state of the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.FocusState
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.FocusState
+
+## -description
+Gets a [MediaCaptureFocusState](mediacapturefocusstate.md) value indicating the current focus state of the capture device.
+
+## -property-value
+A value indicating the current focus state of the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_lockasync_1653754659.md b/windows.media.devices/focuscontrol_lockasync_1653754659.md
index 935812c8ac..07273a5ece 100644
--- a/windows.media.devices/focuscontrol_lockasync_1653754659.md
+++ b/windows.media.devices/focuscontrol_lockasync_1653754659.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.FocusControl.LockAsync
--api-type: winrt method
----
# Windows.Media.Devices.FocusControl.LockAsync
## -description
Locks the capture device's focus.
## -returns
An asynchronous action.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.FocusControl.LockAsync
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.FocusControl.LockAsync
+
+## -description
+Locks the capture device's focus.
+
+## -returns
+An asynchronous action.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_max.md b/windows.media.devices/focuscontrol_max.md
index 07600c23bb..1c7a45d3f8 100644
--- a/windows.media.devices/focuscontrol_max.md
+++ b/windows.media.devices/focuscontrol_max.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.Max
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.Max
## -description
Gets the maximum focus length.
## -property-value
The maximum focus.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.Max
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.Max
+
+## -description
+Gets the maximum focus length.
+
+## -property-value
+The maximum focus.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_min.md b/windows.media.devices/focuscontrol_min.md
index 100b76c55e..cab9d5384f 100644
--- a/windows.media.devices/focuscontrol_min.md
+++ b/windows.media.devices/focuscontrol_min.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.Min
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.Min
## -description
Gets the minimum focus length.
## -property-value
The minimum focus length.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.Min
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.Min
+
+## -description
+Gets the minimum focus length.
+
+## -property-value
+The minimum focus length.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_mode.md b/windows.media.devices/focuscontrol_mode.md
index a0f6d832c3..759e881ff0 100644
--- a/windows.media.devices/focuscontrol_mode.md
+++ b/windows.media.devices/focuscontrol_mode.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.Mode
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.Mode
## -description
Gets the capture device's current focus mode.
## -property-value
The capture device's current focus mode.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.Mode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.Mode
+
+## -description
+Gets the capture device's current focus mode.
+
+## -property-value
+The capture device's current focus mode.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_preset.md b/windows.media.devices/focuscontrol_preset.md
index 587d6286d1..54b9afd42b 100644
--- a/windows.media.devices/focuscontrol_preset.md
+++ b/windows.media.devices/focuscontrol_preset.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.Preset
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.Preset
## -description
Gets the focus preset.
## -property-value
The focus preset.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.Preset
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.Preset
+
+## -description
+Gets the focus preset.
+
+## -property-value
+The focus preset.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_setpresetasync_183048954.md b/windows.media.devices/focuscontrol_setpresetasync_183048954.md
index 5991e0da0b..9cf04ff986 100644
--- a/windows.media.devices/focuscontrol_setpresetasync_183048954.md
+++ b/windows.media.devices/focuscontrol_setpresetasync_183048954.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Devices.FocusControl.SetPresetAsync(Windows.Media.Devices.FocusPreset)
--api-type: winrt method
----
# Windows.Media.Devices.FocusControl.SetPresetAsync
## -description
Asynchronously sets the focus [Preset](focuscontrol_preset.md).
## -parameters
### -param preset
The focus preset to set the [Preset](focuscontrol_preset.md) property to.
## -returns
The object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
[SetPresetAsync(FocusPreset, Boolean)](focuscontrol_setpresetasync_393728766.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.FocusControl.SetPresetAsync(Windows.Media.Devices.FocusPreset)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.FocusControl.SetPresetAsync
+
+## -description
+Asynchronously sets the focus [Preset](focuscontrol_preset.md).
+
+## -parameters
+### -param preset
+The focus preset to set the [Preset](focuscontrol_preset.md) property to.
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[SetPresetAsync(FocusPreset, Boolean)](focuscontrol_setpresetasync_393728766.md)
\ No newline at end of file
diff --git a/windows.media.devices/focuscontrol_setpresetasync_393728766.md b/windows.media.devices/focuscontrol_setpresetasync_393728766.md
index 7be541045e..6abb2dca6c 100644
--- a/windows.media.devices/focuscontrol_setpresetasync_393728766.md
+++ b/windows.media.devices/focuscontrol_setpresetasync_393728766.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.Devices.FocusControl.SetPresetAsync(Windows.Media.Devices.FocusPreset,System.Boolean)
--api-type: winrt method
----
# Windows.Media.Devices.FocusControl.SetPresetAsync
## -description
Asynchronously sets the focus [Preset](focuscontrol_preset.md), specifying if the operation must complete before the device is focused.
## -parameters
### -param preset
The focus preset to set the [Preset](focuscontrol_preset.md) property to.
### -param completeBeforeFocus
Specifies if the asynchronous operation must complete before the device is focused.
## -returns
The object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
[SetPresetAsync(FocusPreset)](focuscontrol_setpresetasync_183048954.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.FocusControl.SetPresetAsync(Windows.Media.Devices.FocusPreset,System.Boolean)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.FocusControl.SetPresetAsync
+
+## -description
+Asynchronously sets the focus [Preset](focuscontrol_preset.md), specifying if the operation must complete before the device is focused.
+
+## -parameters
+### -param preset
+The focus preset to set the [Preset](focuscontrol_preset.md) property to.
+
+### -param completeBeforeFocus
+Specifies if the asynchronous operation must complete before the device is focused.
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[SetPresetAsync(FocusPreset)](focuscontrol_setpresetasync_183048954.md)
\ No newline at end of file
diff --git a/windows.media.devices/focuscontrol_setvalueasync_2096210171.md b/windows.media.devices/focuscontrol_setvalueasync_2096210171.md
index 7716b24c40..2dd0b4770b 100644
--- a/windows.media.devices/focuscontrol_setvalueasync_2096210171.md
+++ b/windows.media.devices/focuscontrol_setvalueasync_2096210171.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Devices.FocusControl.SetValueAsync(System.UInt32)
--api-type: winrt method
----
# Windows.Media.Devices.FocusControl.SetValueAsync
## -description
Asynchronously sets the focus [Value](whitebalancecontrol_value.md).
## -parameters
### -param focus
The value to set the focus to. The minimum and maximum values are specified by [Min](focuscontrol_min.md) and [Max](focuscontrol_max.md).
## -returns
The object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
[Min](focuscontrol_min.md), [Max](focuscontrol_max.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.FocusControl.SetValueAsync(System.UInt32)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.FocusControl.SetValueAsync
+
+## -description
+Asynchronously sets the focus [Value](whitebalancecontrol_value.md).
+
+## -parameters
+### -param focus
+The value to set the focus to. The minimum and maximum values are specified by [Min](focuscontrol_min.md) and [Max](focuscontrol_max.md).
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Min](focuscontrol_min.md), [Max](focuscontrol_max.md)
\ No newline at end of file
diff --git a/windows.media.devices/focuscontrol_step.md b/windows.media.devices/focuscontrol_step.md
index 6f16d1184d..803c3bca55 100644
--- a/windows.media.devices/focuscontrol_step.md
+++ b/windows.media.devices/focuscontrol_step.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.Step
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.Step
## -description
Gets the smallest focus increment supported by the capture device.
## -property-value
The smallest focus increment.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.Step
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.Step
+
+## -description
+Gets the smallest focus increment supported by the capture device.
+
+## -property-value
+The smallest focus increment.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_supported.md b/windows.media.devices/focuscontrol_supported.md
index a56663000f..e2c544fd60 100644
--- a/windows.media.devices/focuscontrol_supported.md
+++ b/windows.media.devices/focuscontrol_supported.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.Supported
## -description
Gets a value that specifies if the capture device supports the focus control.
## -property-value
**true** if the capture device supports the [FocusControl](focuscontrol.md); otherwise, **false**.
## -remarks
If the device does not support the [FocusControl](focuscontrol.md), you can still use the [Focus](videodevicecontroller_focus.md) property on the [VideoCaptureDevice](XREF:TODO:wp_media_capture.audiovideocapturedevice) to set the focus value.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.Supported
+
+## -description
+Gets a value that specifies if the capture device supports the focus control.
+
+## -property-value
+**true** if the capture device supports the [FocusControl](focuscontrol.md); otherwise, **false**.
+
+## -remarks
+If the device does not support the [FocusControl](focuscontrol.md), you can still use the [Focus](videodevicecontroller_focus.md) property on the [VideoCaptureDevice](XREF:TODO:wp_media_capture.audiovideocapturedevice) to set the focus value.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_supportedfocusdistances.md b/windows.media.devices/focuscontrol_supportedfocusdistances.md
index 8126e19cfa..8544bacaf9 100644
--- a/windows.media.devices/focuscontrol_supportedfocusdistances.md
+++ b/windows.media.devices/focuscontrol_supportedfocusdistances.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.SupportedFocusDistances
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.SupportedFocusDistances
## -description
Gets a list of values indicating the manual focus distances that are supported by the capture device.
## -property-value
A list of values indicating the manual focus distances that are supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.SupportedFocusDistances
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.SupportedFocusDistances
+
+## -description
+Gets a list of values indicating the manual focus distances that are supported by the capture device.
+
+## -property-value
+A list of values indicating the manual focus distances that are supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_supportedfocusmodes.md b/windows.media.devices/focuscontrol_supportedfocusmodes.md
index ff1201142e..d32a8814f2 100644
--- a/windows.media.devices/focuscontrol_supportedfocusmodes.md
+++ b/windows.media.devices/focuscontrol_supportedfocusmodes.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.SupportedFocusModes
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.SupportedFocusModes
## -description
Gets a list of values indicating the focus modes that are supported by the capture device.
## -property-value
A list of values indicating the focus modes that are supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.SupportedFocusModes
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.SupportedFocusModes
+
+## -description
+Gets a list of values indicating the focus modes that are supported by the capture device.
+
+## -property-value
+A list of values indicating the focus modes that are supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_supportedfocusranges.md b/windows.media.devices/focuscontrol_supportedfocusranges.md
index e8b64b29d7..8b39d75248 100644
--- a/windows.media.devices/focuscontrol_supportedfocusranges.md
+++ b/windows.media.devices/focuscontrol_supportedfocusranges.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.SupportedFocusRanges
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.SupportedFocusRanges
## -description
Gets a list of values indicating the auto focus ranges that are supported by the capture device.
## -property-value
A list of values indicating the auto focus ranges that are supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.SupportedFocusRanges
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.SupportedFocusRanges
+
+## -description
+Gets a list of values indicating the auto focus ranges that are supported by the capture device.
+
+## -property-value
+A list of values indicating the auto focus ranges that are supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_supportedpresets.md b/windows.media.devices/focuscontrol_supportedpresets.md
index 6fdca8e560..cac86f30b8 100644
--- a/windows.media.devices/focuscontrol_supportedpresets.md
+++ b/windows.media.devices/focuscontrol_supportedpresets.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.SupportedPresets
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.SupportedPresets
## -description
Gets the focus presets that the capture device supports.
## -property-value
The supported focus presets.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.SupportedPresets
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.SupportedPresets
+
+## -description
+Gets the focus presets that the capture device supports.
+
+## -property-value
+The supported focus presets.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_unlockasync_1509852231.md b/windows.media.devices/focuscontrol_unlockasync_1509852231.md
index aac4f506cd..b9081810a9 100644
--- a/windows.media.devices/focuscontrol_unlockasync_1509852231.md
+++ b/windows.media.devices/focuscontrol_unlockasync_1509852231.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.FocusControl.UnlockAsync
--api-type: winrt method
----
# Windows.Media.Devices.FocusControl.UnlockAsync
## -description
Unlocks the capture device's focus if it has previously been locked with a call to [LockAsync](focuscontrol_lockasync.md).
## -returns
An asynchronous action.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.FocusControl.UnlockAsync
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.FocusControl.UnlockAsync
+
+## -description
+Unlocks the capture device's focus if it has previously been locked with a call to [LockAsync](focuscontrol_lockasync.md).
+
+## -returns
+An asynchronous action.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focuscontrol_value.md b/windows.media.devices/focuscontrol_value.md
index e2176e30c3..3be85ac232 100644
--- a/windows.media.devices/focuscontrol_value.md
+++ b/windows.media.devices/focuscontrol_value.md
@@ -1,3 +1,24 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.Value
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.Value
## -description
Gets the current value that the focus is set to.
## -property-value
The value that the focus is set to. The minimum and maximum values for the focus are specified by [Min](focuscontrol_min.md) and [Max](focuscontrol_max.md).
## -remarks
To set a focus value, call [SetValueAsync](focuscontrol_setvalueasync.md) specifying a value between the [Min](focuscontrol_min.md) and [Max](focuscontrol_max.md) focus values.
## -examples
## -see-also
[FocusControl.Value](exposurecontrol_value.md), [Min](focuscontrol_min.md), [Max](focuscontrol_max.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.Value
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.Value
+
+## -description
+Gets the current value that the focus is set to.
+
+## -property-value
+The value that the focus is set to. The minimum and maximum values for the focus are specified by [Min](focuscontrol_min.md) and [Max](focuscontrol_max.md).
+
+## -remarks
+To set a focus value, call [SetValueAsync](focuscontrol_setvalueasync.md) specifying a value between the [Min](focuscontrol_min.md) and [Max](focuscontrol_max.md) focus values.
+
+## -examples
+
+## -see-also
+[FocusControl.Value](exposurecontrol_value.md), [Min](focuscontrol_min.md), [Max](focuscontrol_max.md)
\ No newline at end of file
diff --git a/windows.media.devices/focuscontrol_waitforfocussupported.md b/windows.media.devices/focuscontrol_waitforfocussupported.md
index 21573fc3cc..c82bc1c8c1 100644
--- a/windows.media.devices/focuscontrol_waitforfocussupported.md
+++ b/windows.media.devices/focuscontrol_waitforfocussupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusControl.WaitForFocusSupported
--api-type: winrt property
----
# Windows.Media.Devices.FocusControl.WaitForFocusSupported
## -description
Gets a value that indicates whether [WaitForFocus](focussettings_waitforfocus.md) is supported by the capture device.
## -property-value
A value indicating whether [WaitForFocus](focussettings_waitforfocus.md) is supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusControl.WaitForFocusSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusControl.WaitForFocusSupported
+
+## -description
+Gets a value that indicates whether [WaitForFocus](focussettings_waitforfocus.md) is supported by the capture device.
+
+## -property-value
+A value indicating whether [WaitForFocus](focussettings_waitforfocus.md) is supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focussettings.md b/windows.media.devices/focussettings.md
index 6f2efb2398..668034d760 100644
--- a/windows.media.devices/focussettings.md
+++ b/windows.media.devices/focussettings.md
@@ -1,3 +1,19 @@
----
-api-id: T:Windows.Media.Devices.FocusSettings
--api-type: winrt class
----
# Windows.Media.Devices.FocusSettings
## -description
Represents settings for a [FocusControl](focuscontrol.md) object.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.FocusSettings
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.FocusSettings
+
+## -description
+Represents settings for a [FocusControl](focuscontrol.md) object.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focussettings_autofocusrange.md b/windows.media.devices/focussettings_autofocusrange.md
index 06d4ee8428..a736d1b0c3 100644
--- a/windows.media.devices/focussettings_autofocusrange.md
+++ b/windows.media.devices/focussettings_autofocusrange.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusSettings.AutoFocusRange
--api-type: winrt property
----
# Windows.Media.Devices.FocusSettings.AutoFocusRange
## -description
Gets or sets a value indicating the auto focus range setting.
## -property-value
A value indicating the auto focus range setting.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusSettings.AutoFocusRange
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusSettings.AutoFocusRange
+
+## -description
+Gets or sets a value indicating the auto focus range setting.
+
+## -property-value
+A value indicating the auto focus range setting.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focussettings_disabledriverfallback.md b/windows.media.devices/focussettings_disabledriverfallback.md
index bf27739a35..02a5452845 100644
--- a/windows.media.devices/focussettings_disabledriverfallback.md
+++ b/windows.media.devices/focussettings_disabledriverfallback.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.FocusSettings.DisableDriverFallback
--api-type: winrt property
----
# Windows.Media.Devices.FocusSettings.DisableDriverFallback
## -description
Gets or sets a value that indicates to the driver if it should disable determining a focus position when the focus search fails.
## -property-value
**true** if the driver should not determine a focus position if the focus search fails. **false** if the driver should determine a focus position if the focus search fails.
## -remarks
This property only impacts autofocus (single autofocus and continuous autofocus).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusSettings.DisableDriverFallback
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusSettings.DisableDriverFallback
+
+## -description
+Gets or sets a value that indicates to the driver if it should disable determining a focus position when the focus search fails.
+
+## -property-value
+**true** if the driver should not determine a focus position if the focus search fails. **false** if the driver should determine a focus position if the focus search fails.
+
+## -remarks
+This property only impacts autofocus (single autofocus and continuous autofocus).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focussettings_distance.md b/windows.media.devices/focussettings_distance.md
index b9027f70ef..ea77a3ab07 100644
--- a/windows.media.devices/focussettings_distance.md
+++ b/windows.media.devices/focussettings_distance.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusSettings.Distance
--api-type: winrt property
----
# Windows.Media.Devices.FocusSettings.Distance
## -description
Gets or sets a value indicating the manual focus distance setting.
## -property-value
A value indicating the manual focus distance setting.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusSettings.Distance
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusSettings.Distance
+
+## -description
+Gets or sets a value indicating the manual focus distance setting.
+
+## -property-value
+A value indicating the manual focus distance setting.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focussettings_focussettings_1221375020.md b/windows.media.devices/focussettings_focussettings_1221375020.md
index d3deb71032..16c5e030c2 100644
--- a/windows.media.devices/focussettings_focussettings_1221375020.md
+++ b/windows.media.devices/focussettings_focussettings_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Devices.FocusSettings.#ctor
--api-type: winrt method
----
# Windows.Media.Devices.FocusSettings.FocusSettings
## -description
Initializes a new instance of the [FocusSettings](focussettings.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.FocusSettings.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.FocusSettings.FocusSettings
+
+## -description
+Initializes a new instance of the [FocusSettings](focussettings.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focussettings_mode.md b/windows.media.devices/focussettings_mode.md
index fa8d01e2a8..6a30137aeb 100644
--- a/windows.media.devices/focussettings_mode.md
+++ b/windows.media.devices/focussettings_mode.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.FocusSettings.Mode
--api-type: winrt property
----
# Windows.Media.Devices.FocusSettings.Mode
## -description
Gets or sets a value indicating the focus mode setting.
## -property-value
A value indicating the focus mode setting.
## -remarks
Autofocus mode, enabled by using the [FocusMode.Continuous](focusmode.md) value, is only supported while the preview stream is running. Check to make sure that the preview stream is running before turning on continuous autofocus.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusSettings.Mode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusSettings.Mode
+
+## -description
+Gets or sets a value indicating the focus mode setting.
+
+## -property-value
+A value indicating the focus mode setting.
+
+## -remarks
+Autofocus mode, enabled by using the [FocusMode.Continuous](focusmode.md) value, is only supported while the preview stream is running. Check to make sure that the preview stream is running before turning on continuous autofocus.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focussettings_value.md b/windows.media.devices/focussettings_value.md
index ab6c3c1a25..fcdc245e2d 100644
--- a/windows.media.devices/focussettings_value.md
+++ b/windows.media.devices/focussettings_value.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusSettings.Value
--api-type: winrt property
----
# Windows.Media.Devices.FocusSettings.Value
## -description
Gets or sets the focus value setting.
## -property-value
The focus value setting.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusSettings.Value
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusSettings.Value
+
+## -description
+Gets or sets the focus value setting.
+
+## -property-value
+The focus value setting.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/focussettings_waitforfocus.md b/windows.media.devices/focussettings_waitforfocus.md
index 0d94bfa784..2d830b0054 100644
--- a/windows.media.devices/focussettings_waitforfocus.md
+++ b/windows.media.devices/focussettings_waitforfocus.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.FocusSettings.WaitForFocus
--api-type: winrt property
----
# Windows.Media.Devices.FocusSettings.WaitForFocus
## -description
Gets or sets a value indicating whether the capture device should wait for focus before capturing.
## -property-value
A value indicating whether the capture device should wait for focus before capturing.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.FocusSettings.WaitForFocus
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.FocusSettings.WaitForFocus
+
+## -description
+Gets or sets a value indicating whether the capture device should wait for focus before capturing.
+
+## -property-value
+A value indicating whether the capture device should wait for focus before capturing.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/hdrvideocontrol.md b/windows.media.devices/hdrvideocontrol.md
index bd2fa9b5a2..4d2ce8236b 100644
--- a/windows.media.devices/hdrvideocontrol.md
+++ b/windows.media.devices/hdrvideocontrol.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Devices.HdrVideoControl
--api-type: winrt class
----
# Windows.Media.Devices.HdrVideoControl
## -description
When supported, allows an app to enable High Dynamic Range (HDR) video recording on the capture device.
## -remarks
Get an instance of this class by accessing the [VideoDeviceController.HdrVideoControl](videodevicecontroller_hdrvideocontrol.md) property.
For how-to guidance for using manual video capture controls, see [Manual camera controls for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-video-capture).
## -examples
## -see-also
[Manual camera controls for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-video-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.HdrVideoControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.HdrVideoControl
+
+## -description
+When supported, allows an app to enable High Dynamic Range (HDR) video recording on the capture device.
+
+## -remarks
+Get an instance of this class by accessing the [VideoDeviceController.HdrVideoControl](videodevicecontroller_hdrvideocontrol.md) property.
+
+For how-to guidance for using manual video capture controls, see [Manual camera controls for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-video-capture).
+
+## -examples
+
+## -see-also
+[Manual camera controls for video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-video-capture)
\ No newline at end of file
diff --git a/windows.media.devices/hdrvideocontrol_mode.md b/windows.media.devices/hdrvideocontrol_mode.md
index c2f59aafc5..6f04b529a0 100644
--- a/windows.media.devices/hdrvideocontrol_mode.md
+++ b/windows.media.devices/hdrvideocontrol_mode.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.HdrVideoControl.Mode
--api-type: winrt property
----
# Windows.Media.Devices.HdrVideoControl.Mode
## -description
Gets or sets a value indicating the current High Dynamic Range (HDR) video recording mode of the capture device.
## -property-value
The current High Dynamic Range (HDR) video recording mode of the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.HdrVideoControl.Mode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.HdrVideoControl.Mode
+
+## -description
+Gets or sets a value indicating the current High Dynamic Range (HDR) video recording mode of the capture device.
+
+## -property-value
+The current High Dynamic Range (HDR) video recording mode of the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/hdrvideocontrol_supported.md b/windows.media.devices/hdrvideocontrol_supported.md
index 5f47e2ab94..2adc0186f1 100644
--- a/windows.media.devices/hdrvideocontrol_supported.md
+++ b/windows.media.devices/hdrvideocontrol_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.HdrVideoControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.HdrVideoControl.Supported
## -description
Gets a value that indicates if the capture device supports the [HdrVideoControl](hdrvideocontrol.md).
## -property-value
True if the [HdrVideoControl](hdrvideocontrol.md) is supported; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.HdrVideoControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.HdrVideoControl.Supported
+
+## -description
+Gets a value that indicates if the capture device supports the [HdrVideoControl](hdrvideocontrol.md).
+
+## -property-value
+True if the [HdrVideoControl](hdrvideocontrol.md) is supported; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/hdrvideocontrol_supportedmodes.md b/windows.media.devices/hdrvideocontrol_supportedmodes.md
index 96393817b5..49380cbb86 100644
--- a/windows.media.devices/hdrvideocontrol_supportedmodes.md
+++ b/windows.media.devices/hdrvideocontrol_supportedmodes.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.HdrVideoControl.SupportedModes
--api-type: winrt property
----
# Windows.Media.Devices.HdrVideoControl.SupportedModes
## -description
Gets the list of [HdrVideoMode](hdrvideomode.md) values indicating the modes supported by the capture device.
## -property-value
The list of supported [HdrVideoMode](hdrvideomode.md) values.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.HdrVideoControl.SupportedModes
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.HdrVideoControl.SupportedModes
+
+## -description
+Gets the list of [HdrVideoMode](hdrvideomode.md) values indicating the modes supported by the capture device.
+
+## -property-value
+The list of supported [HdrVideoMode](hdrvideomode.md) values.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/idefaultaudiodevicechangedeventargs_id.md b/windows.media.devices/idefaultaudiodevicechangedeventargs_id.md
index 5518aff175..715ad03e91 100644
--- a/windows.media.devices/idefaultaudiodevicechangedeventargs_id.md
+++ b/windows.media.devices/idefaultaudiodevicechangedeventargs_id.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.IDefaultAudioDeviceChangedEventArgs.Id
--api-type: winrt property
----
# Windows.Media.Devices.IDefaultAudioDeviceChangedEventArgs.Id
## -description
Gets the ID of the newly selected audio device that raised the device change event.
## -property-value
ID of the newly selected audio device that raised the device change event.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.IDefaultAudioDeviceChangedEventArgs.Id
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.IDefaultAudioDeviceChangedEventArgs.Id
+
+## -description
+Gets the ID of the newly selected audio device that raised the device change event.
+
+## -property-value
+ID of the newly selected audio device that raised the device change event.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/idefaultaudiodevicechangedeventargs_role.md b/windows.media.devices/idefaultaudiodevicechangedeventargs_role.md
index 520fbf7a17..522c185a02 100644
--- a/windows.media.devices/idefaultaudiodevicechangedeventargs_role.md
+++ b/windows.media.devices/idefaultaudiodevicechangedeventargs_role.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.IDefaultAudioDeviceChangedEventArgs.Role
--api-type: winrt property
----
# Windows.Media.Devices.IDefaultAudioDeviceChangedEventArgs.Role
## -description
Gets the role of the newly selected audio device that raised the device change event.
## -property-value
The role of the newly selected audio device that raised the device change event.
## -remarks
## -examples
## -see-also
[AudioDeviceRole](audiodevicerole.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.IDefaultAudioDeviceChangedEventArgs.Role
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.IDefaultAudioDeviceChangedEventArgs.Role
+
+## -description
+Gets the role of the newly selected audio device that raised the device change event.
+
+## -property-value
+The role of the newly selected audio device that raised the device change event.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[AudioDeviceRole](audiodevicerole.md)
\ No newline at end of file
diff --git a/windows.media.devices/imediadevicecontroller_getavailablemediastreamproperties.md b/windows.media.devices/imediadevicecontroller_getavailablemediastreamproperties.md
index 37c06d2f1e..9760572dc2 100644
--- a/windows.media.devices/imediadevicecontroller_getavailablemediastreamproperties.md
+++ b/windows.media.devices/imediadevicecontroller_getavailablemediastreamproperties.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.IMediaDeviceController.GetAvailableMediaStreamProperties(Windows.Media.Capture.MediaStreamType)
--api-type: winrt method
----
# Windows.Media.Devices.IMediaDeviceController.GetAvailableMediaStreamProperties
## -description
Gets a list of the supported encoding properties for the device.
## -parameters
### -param mediaStreamType
The type of media stream for which to get the properties.
## -returns
A list of the supported encoding properties.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.IMediaDeviceController.GetAvailableMediaStreamProperties(Windows.Media.Capture.MediaStreamType)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.IMediaDeviceController.GetAvailableMediaStreamProperties
+
+## -description
+Gets a list of the supported encoding properties for the device.
+
+## -parameters
+### -param mediaStreamType
+The type of media stream for which to get the properties.
+
+## -returns
+A list of the supported encoding properties.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/imediadevicecontroller_getmediastreamproperties.md b/windows.media.devices/imediadevicecontroller_getmediastreamproperties.md
index cb6370e55a..102e7a90fd 100644
--- a/windows.media.devices/imediadevicecontroller_getmediastreamproperties.md
+++ b/windows.media.devices/imediadevicecontroller_getmediastreamproperties.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.IMediaDeviceController.GetMediaStreamProperties(Windows.Media.Capture.MediaStreamType)
--api-type: winrt method
----
# Windows.Media.Devices.IMediaDeviceController.GetMediaStreamProperties
## -description
Gets the encoding properties for the specified media stream type for the device.
## -parameters
### -param mediaStreamType
The type of media stream for which to get the properties.
## -returns
The encoding properties.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.IMediaDeviceController.GetMediaStreamProperties(Windows.Media.Capture.MediaStreamType)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.IMediaDeviceController.GetMediaStreamProperties
+
+## -description
+Gets the encoding properties for the specified media stream type for the device.
+
+## -parameters
+### -param mediaStreamType
+The type of media stream for which to get the properties.
+
+## -returns
+The encoding properties.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/imediadevicecontroller_setmediastreampropertiesasync.md b/windows.media.devices/imediadevicecontroller_setmediastreampropertiesasync.md
index a230a7bf8b..fcd1804c3c 100644
--- a/windows.media.devices/imediadevicecontroller_setmediastreampropertiesasync.md
+++ b/windows.media.devices/imediadevicecontroller_setmediastreampropertiesasync.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.Devices.IMediaDeviceController.SetMediaStreamPropertiesAsync(Windows.Media.Capture.MediaStreamType,Windows.Media.MediaProperties.IMediaEncodingProperties)
--api-type: winrt method
----
# Windows.Media.Devices.IMediaDeviceController.SetMediaStreamPropertiesAsync
## -description
Sets the encoding properties asynchronously for the specified media stream type for the device.
## -parameters
### -param mediaStreamType
The type of media stream for which to set the properties.
### -param mediaEncodingProperties
The encoding properties to set.
## -returns
An [IAsyncAction](../windows.foundation/iasyncaction.md) object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.IMediaDeviceController.SetMediaStreamPropertiesAsync(Windows.Media.Capture.MediaStreamType,Windows.Media.MediaProperties.IMediaEncodingProperties)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.IMediaDeviceController.SetMediaStreamPropertiesAsync
+
+## -description
+Sets the encoding properties asynchronously for the specified media stream type for the device.
+
+## -parameters
+### -param mediaStreamType
+The type of media stream for which to set the properties.
+
+### -param mediaEncodingProperties
+The encoding properties to set.
+
+## -returns
+An [IAsyncAction](../windows.foundation/iasyncaction.md) object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol.md b/windows.media.devices/isospeedcontrol.md
index 8f3d3c2f83..100867fc33 100644
--- a/windows.media.devices/isospeedcontrol.md
+++ b/windows.media.devices/isospeedcontrol.md
@@ -1,3 +1,31 @@
----
-api-id: T:Windows.Media.Devices.IsoSpeedControl
--api-type: winrt class
----
# Windows.Media.Devices.IsoSpeedControl
## -description
Provides functionality for controlling the ISO film speed settings on a capture device.
## -remarks
You can find out if a device supports this control by checking [IsoSpeedControl.Supported](isospeedcontrol_supported.md).
You can access the [IsoSpeedControl](isospeedcontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
The [IsoSpeedControl](isospeedcontrol.md) enables apps to manage the ISO speed settings on a device. For example, in low-light conditions, apps may prefer higher noise level in return for higher overall brightness. The ISO speed control lets apps adjust tradeoffs such as this.
Use [SetPresetAsync](isospeedcontrol_setpresetasync.md) to set the ISO level to one of the [IsoSpeedPreset](isospeedpreset.md) values.
[SupportedPresets](isospeedcontrol_supportedpresets.md) lists the preset values that are support on the device.
For how-to guidance for using the **FocusControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
## -examples
## -see-also
[Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.IsoSpeedControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl
+
+## -description
+Provides functionality for controlling the ISO film speed settings on a capture device.
+
+## -remarks
+You can find out if a device supports this control by checking [IsoSpeedControl.Supported](isospeedcontrol_supported.md).
+
+You can access the [IsoSpeedControl](isospeedcontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
+
+The [IsoSpeedControl](isospeedcontrol.md) enables apps to manage the ISO speed settings on a device. For example, in low-light conditions, apps may prefer higher noise level in return for higher overall brightness. The ISO speed control lets apps adjust tradeoffs such as this.
+
+Use [SetPresetAsync](isospeedcontrol_setpresetasync.md) to set the ISO level to one of the [IsoSpeedPreset](isospeedpreset.md) values.
+
+[SupportedPresets](isospeedcontrol_supportedpresets.md) lists the preset values that are support on the device.
+
+For how-to guidance for using the **FocusControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
+
+## -examples
+
+## -see-also
+[Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
diff --git a/windows.media.devices/isospeedcontrol_auto.md b/windows.media.devices/isospeedcontrol_auto.md
index ab1db8e47b..8fca72effd 100644
--- a/windows.media.devices/isospeedcontrol_auto.md
+++ b/windows.media.devices/isospeedcontrol_auto.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.IsoSpeedControl.Auto
--api-type: winrt property
----
# Windows.Media.Devices.IsoSpeedControl.Auto
## -description
Gets a value indicating whether auto ISO speed is enabled.
## -property-value
A value indicating whether auto ISO speed is enabled.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.IsoSpeedControl.Auto
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.Auto
+
+## -description
+Gets a value indicating whether auto ISO speed is enabled.
+
+## -property-value
+A value indicating whether auto ISO speed is enabled.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol_max.md b/windows.media.devices/isospeedcontrol_max.md
index f53e413e15..ac5fd236bb 100644
--- a/windows.media.devices/isospeedcontrol_max.md
+++ b/windows.media.devices/isospeedcontrol_max.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.IsoSpeedControl.Max
--api-type: winrt property
----
# Windows.Media.Devices.IsoSpeedControl.Max
## -description
Gets the maximum ISO speed supported by the capture device.
## -property-value
The maximum ISO speed supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.IsoSpeedControl.Max
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.Max
+
+## -description
+Gets the maximum ISO speed supported by the capture device.
+
+## -property-value
+The maximum ISO speed supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol_min.md b/windows.media.devices/isospeedcontrol_min.md
index b0f822a687..a71b4020ad 100644
--- a/windows.media.devices/isospeedcontrol_min.md
+++ b/windows.media.devices/isospeedcontrol_min.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.IsoSpeedControl.Min
--api-type: winrt property
----
# Windows.Media.Devices.IsoSpeedControl.Min
## -description
Gets the minimum ISO speed supported by the capture device.
## -property-value
The minimum ISO speed supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.IsoSpeedControl.Min
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.Min
+
+## -description
+Gets the minimum ISO speed supported by the capture device.
+
+## -property-value
+The minimum ISO speed supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol_preset.md b/windows.media.devices/isospeedcontrol_preset.md
index 0e2e4b60ff..68a07c74f9 100644
--- a/windows.media.devices/isospeedcontrol_preset.md
+++ b/windows.media.devices/isospeedcontrol_preset.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.IsoSpeedControl.Preset
--api-type: winrt property
----
# Windows.Media.Devices.IsoSpeedControl.Preset
## -description
Gets the ISO film speed preset.
## -property-value
The ISO speed preset.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.IsoSpeedControl.Preset
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.Preset
+
+## -description
+Gets the ISO film speed preset.
+
+## -property-value
+The ISO speed preset.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol_setautoasync_1264919457.md b/windows.media.devices/isospeedcontrol_setautoasync_1264919457.md
index b773f1825d..a4cd4c6326 100644
--- a/windows.media.devices/isospeedcontrol_setautoasync_1264919457.md
+++ b/windows.media.devices/isospeedcontrol_setautoasync_1264919457.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.IsoSpeedControl.SetAutoAsync
--api-type: winrt method
----
# Windows.Media.Devices.IsoSpeedControl.SetAutoAsync
## -description
Sets the ISO speed to automatic.
## -returns
An asynchronous action.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.IsoSpeedControl.SetAutoAsync
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.SetAutoAsync
+
+## -description
+Sets the ISO speed to automatic.
+
+## -returns
+An asynchronous action.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol_setpresetasync_1340401685.md b/windows.media.devices/isospeedcontrol_setpresetasync_1340401685.md
index 2565997b5a..cd8bb63fc3 100644
--- a/windows.media.devices/isospeedcontrol_setpresetasync_1340401685.md
+++ b/windows.media.devices/isospeedcontrol_setpresetasync_1340401685.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.IsoSpeedControl.SetPresetAsync(Windows.Media.Devices.IsoSpeedPreset)
--api-type: winrt method
----
# Windows.Media.Devices.IsoSpeedControl.SetPresetAsync
## -description
Asynchronously sets the ISO film speed [Preset](isospeedcontrol_preset.md).
## -parameters
### -param preset
The ISO preset value to set the [Preset](isospeedcontrol_preset.md) property to.
## -returns
The object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.IsoSpeedControl.SetPresetAsync(Windows.Media.Devices.IsoSpeedPreset)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.SetPresetAsync
+
+## -description
+Asynchronously sets the ISO film speed [Preset](isospeedcontrol_preset.md).
+
+## -parameters
+### -param preset
+The ISO preset value to set the [Preset](isospeedcontrol_preset.md) property to.
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol_setvalueasync_2096210171.md b/windows.media.devices/isospeedcontrol_setvalueasync_2096210171.md
index 674002d378..caf8155174 100644
--- a/windows.media.devices/isospeedcontrol_setvalueasync_2096210171.md
+++ b/windows.media.devices/isospeedcontrol_setvalueasync_2096210171.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.IsoSpeedControl.SetValueAsync(System.UInt32)
--api-type: winrt method
----
# Windows.Media.Devices.IsoSpeedControl.SetValueAsync
## -description
Sets the ISO speed value.
## -parameters
### -param isoSpeed
The ISO speed value.
## -returns
An asynchronous action.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.IsoSpeedControl.SetValueAsync(System.UInt32)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.SetValueAsync
+
+## -description
+Sets the ISO speed value.
+
+## -parameters
+### -param isoSpeed
+The ISO speed value.
+
+## -returns
+An asynchronous action.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol_step.md b/windows.media.devices/isospeedcontrol_step.md
index 356fd02d57..c6bd7e40b9 100644
--- a/windows.media.devices/isospeedcontrol_step.md
+++ b/windows.media.devices/isospeedcontrol_step.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.IsoSpeedControl.Step
--api-type: winrt property
----
# Windows.Media.Devices.IsoSpeedControl.Step
## -description
Gets the smallest ISO speed increment supported by the capture device.
## -property-value
The smallest ISO speed increment supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.IsoSpeedControl.Step
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.Step
+
+## -description
+Gets the smallest ISO speed increment supported by the capture device.
+
+## -property-value
+The smallest ISO speed increment supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol_supported.md b/windows.media.devices/isospeedcontrol_supported.md
index 079cde300d..b4dd6cdce5 100644
--- a/windows.media.devices/isospeedcontrol_supported.md
+++ b/windows.media.devices/isospeedcontrol_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.IsoSpeedControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.IsoSpeedControl.Supported
## -description
Gets a value the specifies if the capture device supports the ISO speed control.
## -property-value
**true** if the ISO control is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.IsoSpeedControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.Supported
+
+## -description
+Gets a value the specifies if the capture device supports the ISO speed control.
+
+## -property-value
+**true** if the ISO control is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol_supportedpresets.md b/windows.media.devices/isospeedcontrol_supportedpresets.md
index f3d8ad75d7..4a17220883 100644
--- a/windows.media.devices/isospeedcontrol_supportedpresets.md
+++ b/windows.media.devices/isospeedcontrol_supportedpresets.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.IsoSpeedControl.SupportedPresets
--api-type: winrt property
----
# Windows.Media.Devices.IsoSpeedControl.SupportedPresets
## -description
Gets the ISO presets that the capture device supports.
## -property-value
The supported ISO presets.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.IsoSpeedControl.SupportedPresets
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.SupportedPresets
+
+## -description
+Gets the ISO presets that the capture device supports.
+
+## -property-value
+The supported ISO presets.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/isospeedcontrol_value.md b/windows.media.devices/isospeedcontrol_value.md
index 5e88f286af..e504d0eb37 100644
--- a/windows.media.devices/isospeedcontrol_value.md
+++ b/windows.media.devices/isospeedcontrol_value.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.IsoSpeedControl.Value
--api-type: winrt property
----
# Windows.Media.Devices.IsoSpeedControl.Value
## -description
Gets the current ISO speed value.
## -property-value
The current ISO speed value.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.IsoSpeedControl.Value
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.IsoSpeedControl.Value
+
+## -description
+Gets the current ISO speed value.
+
+## -property-value
+The current ISO speed value.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/keypadpressedeventargs_telephonykey.md b/windows.media.devices/keypadpressedeventargs_telephonykey.md
index 79def9d71f..5a5a13779f 100644
--- a/windows.media.devices/keypadpressedeventargs_telephonykey.md
+++ b/windows.media.devices/keypadpressedeventargs_telephonykey.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.KeypadPressedEventArgs.TelephonyKey
--api-type: winrt property
----
# Windows.Media.Devices.KeypadPressedEventArgs.TelephonyKey
## -description
Returns the value of the keypad button on the device that was pressed.
## -property-value
The key. One of the values of the [TelephonyKey](telephonykey.md) enumeration.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.KeypadPressedEventArgs.TelephonyKey
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.KeypadPressedEventArgs.TelephonyKey
+
+## -description
+Returns the value of the keypad button on the device that was pressed.
+
+## -property-value
+The key. One of the values of the [TelephonyKey](telephonykey.md) enumeration.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotocontrol.md b/windows.media.devices/lowlagphotocontrol.md
index 3377700be5..efb073b522 100644
--- a/windows.media.devices/lowlagphotocontrol.md
+++ b/windows.media.devices/lowlagphotocontrol.md
@@ -1,3 +1,26 @@
----
-api-id: T:Windows.Media.Devices.LowLagPhotoControl
--api-type: winrt class
----
# Windows.Media.Devices.LowLagPhotoControl
## -description
Provides functionality for managing the low shutter lag photo capture mode on the capture device.
## -remarks
You can access the [LowLagPhotoControl](lowlagphotocontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
Thumbnails are supported for a low shutter lag single photos and photo sequences.
To enable thumbnails, set [ThumbnailEnabled](lowlagphotocontrol_thumbnailenabled.md) to **true**.
You can set the desired thumbnail size through [DesiredThumbnailSize](lowlagphotocontrol_desiredthumbnailsize.md) and set the thumbnail format through [ThumbnailFormat](lowlagphotocontrol_thumbnailformat.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.LowLagPhotoControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoControl
+
+## -description
+Provides functionality for managing the low shutter lag photo capture mode on the capture device.
+
+## -remarks
+You can access the [LowLagPhotoControl](lowlagphotocontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
+
+Thumbnails are supported for a low shutter lag single photos and photo sequences.
+
+To enable thumbnails, set [ThumbnailEnabled](lowlagphotocontrol_thumbnailenabled.md) to **true**.
+
+You can set the desired thumbnail size through [DesiredThumbnailSize](lowlagphotocontrol_desiredthumbnailsize.md) and set the thumbnail format through [ThumbnailFormat](lowlagphotocontrol_thumbnailformat.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotocontrol_desiredthumbnailsize.md b/windows.media.devices/lowlagphotocontrol_desiredthumbnailsize.md
index c67ef3498c..39195a5587 100644
--- a/windows.media.devices/lowlagphotocontrol_desiredthumbnailsize.md
+++ b/windows.media.devices/lowlagphotocontrol_desiredthumbnailsize.md
@@ -1,3 +1,24 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoControl.DesiredThumbnailSize
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoControl.DesiredThumbnailSize
## -description
Gets or sets the desired size for thumbnails, which is the largest length of the image, either width or height.
## -property-value
The desired thumbnail size.
## -remarks
The actual dimension of the thumbnail is not guaranteed to be the value specified by [DesiredThumbnailSize](lowlagphotocontrol_desiredthumbnailsize.md), but the system will attempt to create thumbnails as close as possible to this value.
## -examples
## -see-also
[ThumbnailEnabled](lowlagphotocontrol_thumbnailenabled.md), [ThumbnailFormat](lowlagphotocontrol_thumbnailformat.md), [HardwareAcceleratedThumbnailSupported](lowlagphotocontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoControl.DesiredThumbnailSize
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoControl.DesiredThumbnailSize
+
+## -description
+Gets or sets the desired size for thumbnails, which is the largest length of the image, either width or height.
+
+## -property-value
+The desired thumbnail size.
+
+## -remarks
+The actual dimension of the thumbnail is not guaranteed to be the value specified by [DesiredThumbnailSize](lowlagphotocontrol_desiredthumbnailsize.md), but the system will attempt to create thumbnails as close as possible to this value.
+
+## -examples
+
+## -see-also
+[ThumbnailEnabled](lowlagphotocontrol_thumbnailenabled.md), [ThumbnailFormat](lowlagphotocontrol_thumbnailformat.md), [HardwareAcceleratedThumbnailSupported](lowlagphotocontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
diff --git a/windows.media.devices/lowlagphotocontrol_getcurrentframerate_279282429.md b/windows.media.devices/lowlagphotocontrol_getcurrentframerate_279282429.md
index 7c5a226261..4d90124555 100644
--- a/windows.media.devices/lowlagphotocontrol_getcurrentframerate_279282429.md
+++ b/windows.media.devices/lowlagphotocontrol_getcurrentframerate_279282429.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.LowLagPhotoControl.GetCurrentFrameRate
--api-type: winrt method
----
# Windows.Media.Devices.LowLagPhotoControl.GetCurrentFrameRate
## -description
Gets the current frame rate at which pictures can be taken.
## -returns
The current frame rate.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.LowLagPhotoControl.GetCurrentFrameRate
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoControl.GetCurrentFrameRate
+
+## -description
+Gets the current frame rate at which pictures can be taken.
+
+## -returns
+The current frame rate.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotocontrol_gethighestconcurrentframerate_1293632752.md b/windows.media.devices/lowlagphotocontrol_gethighestconcurrentframerate_1293632752.md
index 3543288301..d2fdf7ca29 100644
--- a/windows.media.devices/lowlagphotocontrol_gethighestconcurrentframerate_1293632752.md
+++ b/windows.media.devices/lowlagphotocontrol_gethighestconcurrentframerate_1293632752.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Devices.LowLagPhotoControl.GetHighestConcurrentFrameRate(Windows.Media.MediaProperties.IMediaEncodingProperties)
--api-type: winrt method
----
# Windows.Media.Devices.LowLagPhotoControl.GetHighestConcurrentFrameRate
## -description
Gets the highest frame rate supported when video and photos are being captured concurrently.
## -parameters
### -param captureProperties
The media encoding properties.
## -returns
The highest concurrent frames per second.
## -remarks
The [ConcurrentRecordAndPhotoSupported](../windows.media.capture/mediacapturesettings_concurrentrecordandphotosupported.md) property on the [MediaCapture](../windows.media.capture/mediacapture.md) class specifies if the capture device supports capturing videos and photos at the same time.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.LowLagPhotoControl.GetHighestConcurrentFrameRate(Windows.Media.MediaProperties.IMediaEncodingProperties)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoControl.GetHighestConcurrentFrameRate
+
+## -description
+Gets the highest frame rate supported when video and photos are being captured concurrently.
+
+## -parameters
+### -param captureProperties
+The media encoding properties.
+
+## -returns
+The highest concurrent frames per second.
+
+## -remarks
+The [ConcurrentRecordAndPhotoSupported](../windows.media.capture/mediacapturesettings_concurrentrecordandphotosupported.md) property on the [MediaCapture](../windows.media.capture/mediacapture.md) class specifies if the capture device supports capturing videos and photos at the same time.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotocontrol_hardwareacceleratedthumbnailsupported.md b/windows.media.devices/lowlagphotocontrol_hardwareacceleratedthumbnailsupported.md
index 8fddd258fd..1ed18dee4d 100644
--- a/windows.media.devices/lowlagphotocontrol_hardwareacceleratedthumbnailsupported.md
+++ b/windows.media.devices/lowlagphotocontrol_hardwareacceleratedthumbnailsupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoControl.HardwareAcceleratedThumbnailSupported
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoControl.HardwareAcceleratedThumbnailSupported
## -description
Gets a value that specifies if hardware acceleration is supported for thumbnails.
## -property-value
**true** if hardware acceleration for thumbnails is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoControl.HardwareAcceleratedThumbnailSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoControl.HardwareAcceleratedThumbnailSupported
+
+## -description
+Gets a value that specifies if hardware acceleration is supported for thumbnails.
+
+## -property-value
+**true** if hardware acceleration for thumbnails is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotocontrol_thumbnailenabled.md b/windows.media.devices/lowlagphotocontrol_thumbnailenabled.md
index 5ef8af2edf..472d821f7f 100644
--- a/windows.media.devices/lowlagphotocontrol_thumbnailenabled.md
+++ b/windows.media.devices/lowlagphotocontrol_thumbnailenabled.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoControl.ThumbnailEnabled
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoControl.ThumbnailEnabled
## -description
Gets a value that enables and disables thumbnail support.
## -property-value
**true** if thumbnails are enabled; otherwise, **false**.
## -remarks
## -examples
## -see-also
[DesiredThumbnailSize](lowlagphotocontrol_desiredthumbnailsize.md), [ThumbnailFormat](lowlagphotocontrol_thumbnailformat.md), [HardwareAcceleratedThumbnailSupported](lowlagphotocontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoControl.ThumbnailEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoControl.ThumbnailEnabled
+
+## -description
+Gets a value that enables and disables thumbnail support.
+
+## -property-value
+**true** if thumbnails are enabled; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[DesiredThumbnailSize](lowlagphotocontrol_desiredthumbnailsize.md), [ThumbnailFormat](lowlagphotocontrol_thumbnailformat.md), [HardwareAcceleratedThumbnailSupported](lowlagphotocontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
diff --git a/windows.media.devices/lowlagphotocontrol_thumbnailformat.md b/windows.media.devices/lowlagphotocontrol_thumbnailformat.md
index ed0b15028d..341c90a4d9 100644
--- a/windows.media.devices/lowlagphotocontrol_thumbnailformat.md
+++ b/windows.media.devices/lowlagphotocontrol_thumbnailformat.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoControl.ThumbnailFormat
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoControl.ThumbnailFormat
## -description
Gets or sets the media format for the thumbnails.
## -property-value
The media format for the thumbnails.
## -remarks
## -examples
## -see-also
[ThumbnailEnabled](lowlagphotocontrol_thumbnailenabled.md), [DesiredThumbnailSize](lowlagphotocontrol_desiredthumbnailsize.md), [HardwareAcceleratedThumbnailSupported](lowlagphotocontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoControl.ThumbnailFormat
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoControl.ThumbnailFormat
+
+## -description
+Gets or sets the media format for the thumbnails.
+
+## -property-value
+The media format for the thumbnails.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[ThumbnailEnabled](lowlagphotocontrol_thumbnailenabled.md), [DesiredThumbnailSize](lowlagphotocontrol_desiredthumbnailsize.md), [HardwareAcceleratedThumbnailSupported](lowlagphotocontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
diff --git a/windows.media.devices/lowlagphotosequencecontrol.md b/windows.media.devices/lowlagphotosequencecontrol.md
index 481d5cc7a6..ce12d80f03 100644
--- a/windows.media.devices/lowlagphotosequencecontrol.md
+++ b/windows.media.devices/lowlagphotosequencecontrol.md
@@ -1,3 +1,41 @@
----
-api-id: T:Windows.Media.Devices.LowLagPhotoSequenceControl
--api-type: winrt class
----
# Windows.Media.Devices.LowLagPhotoSequenceControl
## -description
Provides functionality for managing the low shutter lag photo sequence mode on the capture device.
## -remarks
Photo sequence mode takes a rapid sequence of photos. A key scenario for photo sequence is getting photos in the past, that is prior to when the user takes a photo.
You can access the [LowLagPhotoSequenceControl](lowlagphotosequencecontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
You can find out if the device supports photo sequence mode by checking [LowLagPhotoSequenceControl.Supported](lowlagphotosequencecontrol_supported.md).
To initiate photo sequence mode, call [MediaCapture.PrepareLowLagPhotoSequenceCaptureAsync](../windows.media.capture/mediacapture_preparelowlagphotosequencecaptureasync.md). To start capturing photos, call [StartAsync](../windows.media.capture/lowlagphotosequencecapture_startasync.md). To stop capturing photos, call [StopAsync](../windows.media.capture/lowlagphotosequencecapture_stopasync.md). The app will continue to receive photos from the device until the operation is stopped.
[GetCurrentFrameRate](lowlagphotosequencecontrol_getcurrentframerate.md) specifies the frame rate at which the photos are taken.
[PhotoCapturedEventArgs.CaptureTimeOffset](../windows.media.capture/photocapturedeventargs_capturetimeoffset.md) can be used to tell whether a frame was in the future, greater than 0, or in the past, less than 0.
If the app wants to limit how many frames it gets per second, it can use [LowLagPhotoSequence.PhotosPerSecondLimit](lowlagphotosequencecontrol_photospersecondlimit.md). This can be useful in situations where the sensor on the device can handle 30fps, but the app only needs 4fps.
Thumbnails are supported for a low shutter lag single photos and photo sequences.
To enable thumbnails, set [ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md) to **true**.
You can set the desired thumbnail size through [DesiredThumbnailSize](lowlagphotosequencecontrol_desiredthumbnailsize.md) and set the thumbnail format through [ThumbnailFormat](lowlagphotosequencecontrol_thumbnailformat.md).
The number of past photos cannot be more than [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md), which is the maximum number of past photos that is supported by the driver. The number of past photos returned will be the smaller of the following values: [PastPhotoLimit](lowlagphotosequencecontrol_pastphotolimit.md), [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md), or the current number of available past photos.
## -examples
## -see-also
[LowLagPhotoSequenceCapture](../windows.media.capture/lowlagphotosequencecapture.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.LowLagPhotoSequenceControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl
+
+## -description
+Provides functionality for managing the low shutter lag photo sequence mode on the capture device.
+
+## -remarks
+Photo sequence mode takes a rapid sequence of photos. A key scenario for photo sequence is getting photos in the past, that is prior to when the user takes a photo.
+
+You can access the [LowLagPhotoSequenceControl](lowlagphotosequencecontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
+
+You can find out if the device supports photo sequence mode by checking [LowLagPhotoSequenceControl.Supported](lowlagphotosequencecontrol_supported.md).
+
+To initiate photo sequence mode, call [MediaCapture.PrepareLowLagPhotoSequenceCaptureAsync](../windows.media.capture/mediacapture_preparelowlagphotosequencecaptureasync.md). To start capturing photos, call [StartAsync](../windows.media.capture/lowlagphotosequencecapture_startasync.md). To stop capturing photos, call [StopAsync](../windows.media.capture/lowlagphotosequencecapture_stopasync.md). The app will continue to receive photos from the device until the operation is stopped.
+
+[GetCurrentFrameRate](lowlagphotosequencecontrol_getcurrentframerate.md) specifies the frame rate at which the photos are taken.
+
+[PhotoCapturedEventArgs.CaptureTimeOffset](../windows.media.capture/photocapturedeventargs_capturetimeoffset.md) can be used to tell whether a frame was in the future, greater than 0, or in the past, less than 0.
+
+If the app wants to limit how many frames it gets per second, it can use [LowLagPhotoSequence.PhotosPerSecondLimit](lowlagphotosequencecontrol_photospersecondlimit.md). This can be useful in situations where the sensor on the device can handle 30fps, but the app only needs 4fps.
+
+Thumbnails are supported for a low shutter lag single photos and photo sequences.
+
+To enable thumbnails, set [ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md) to **true**.
+
+You can set the desired thumbnail size through [DesiredThumbnailSize](lowlagphotosequencecontrol_desiredthumbnailsize.md) and set the thumbnail format through [ThumbnailFormat](lowlagphotosequencecontrol_thumbnailformat.md).
+
+The number of past photos cannot be more than [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md), which is the maximum number of past photos that is supported by the driver. The number of past photos returned will be the smaller of the following values: [PastPhotoLimit](lowlagphotosequencecontrol_pastphotolimit.md), [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md), or the current number of available past photos.
+
+## -examples
+
+## -see-also
+[LowLagPhotoSequenceCapture](../windows.media.capture/lowlagphotosequencecapture.md)
\ No newline at end of file
diff --git a/windows.media.devices/lowlagphotosequencecontrol_desiredthumbnailsize.md b/windows.media.devices/lowlagphotosequencecontrol_desiredthumbnailsize.md
index 3be63b8a31..8d4f401a71 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_desiredthumbnailsize.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_desiredthumbnailsize.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.DesiredThumbnailSize
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.DesiredThumbnailSize
## -description
Gets or sets the desired size for thumbnails, which is the largest length of the image, either width or height.
## -property-value
The desired thumbnail size.
## -remarks
## -examples
## -see-also
[ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md), [ThumbnailFormat](lowlagphotosequencecontrol_thumbnailformat.md), [HardwareAcceleratedThumbnailSupported](lowlagphotosequencecontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.DesiredThumbnailSize
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.DesiredThumbnailSize
+
+## -description
+Gets or sets the desired size for thumbnails, which is the largest length of the image, either width or height.
+
+## -property-value
+The desired thumbnail size.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md), [ThumbnailFormat](lowlagphotosequencecontrol_thumbnailformat.md), [HardwareAcceleratedThumbnailSupported](lowlagphotosequencecontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
diff --git a/windows.media.devices/lowlagphotosequencecontrol_getcurrentframerate_279282429.md b/windows.media.devices/lowlagphotosequencecontrol_getcurrentframerate_279282429.md
index 2a5237453c..827c00cb90 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_getcurrentframerate_279282429.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_getcurrentframerate_279282429.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.LowLagPhotoSequenceControl.GetCurrentFrameRate
--api-type: winrt method
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.GetCurrentFrameRate
## -description
Gets the current frame rate at which pictures can be taken.
## -returns
The current frame rate.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.LowLagPhotoSequenceControl.GetCurrentFrameRate
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.GetCurrentFrameRate
+
+## -description
+Gets the current frame rate at which pictures can be taken.
+
+## -returns
+The current frame rate.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotosequencecontrol_gethighestconcurrentframerate_1293632752.md b/windows.media.devices/lowlagphotosequencecontrol_gethighestconcurrentframerate_1293632752.md
index d847059b08..0a96583fcf 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_gethighestconcurrentframerate_1293632752.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_gethighestconcurrentframerate_1293632752.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Devices.LowLagPhotoSequenceControl.GetHighestConcurrentFrameRate(Windows.Media.MediaProperties.IMediaEncodingProperties)
--api-type: winrt method
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.GetHighestConcurrentFrameRate
## -description
Gets the highest frame rate supported when video and photos sequences are being captured concurrently.
## -parameters
### -param captureProperties
The media encoding properties.
## -returns
The highest concurrent frames per second.
## -remarks
The [ConcurrentRecordAndPhotoSequenceSupported](../windows.media.capture/mediacapturesettings_concurrentrecordandphotosequencesupported.md) property on the [MediaCapture](../windows.media.capture/mediacapture.md) class specifies if the capture device supports capturing videos and photo sequences at the same time.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.LowLagPhotoSequenceControl.GetHighestConcurrentFrameRate(Windows.Media.MediaProperties.IMediaEncodingProperties)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.GetHighestConcurrentFrameRate
+
+## -description
+Gets the highest frame rate supported when video and photos sequences are being captured concurrently.
+
+## -parameters
+### -param captureProperties
+The media encoding properties.
+
+## -returns
+The highest concurrent frames per second.
+
+## -remarks
+The [ConcurrentRecordAndPhotoSequenceSupported](../windows.media.capture/mediacapturesettings_concurrentrecordandphotosequencesupported.md) property on the [MediaCapture](../windows.media.capture/mediacapture.md) class specifies if the capture device supports capturing videos and photo sequences at the same time.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotosequencecontrol_hardwareacceleratedthumbnailsupported.md b/windows.media.devices/lowlagphotosequencecontrol_hardwareacceleratedthumbnailsupported.md
index 24c3622d6e..b0eed84a69 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_hardwareacceleratedthumbnailsupported.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_hardwareacceleratedthumbnailsupported.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.HardwareAcceleratedThumbnailSupported
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.HardwareAcceleratedThumbnailSupported
## -description
Gets a value that specifies if hardware acceleration is supported for thumbnails in photo sequence mode.
## -property-value
**true** if hardware acceleration is supported for thumbnails in photo sequence mode; otherwise, **false**.
## -remarks
## -examples
## -see-also
[ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md), [DesiredThumbnailSize](lowlagphotosequencecontrol_desiredthumbnailsize.md), [ThumbnailFormat](lowlagphotosequencecontrol_thumbnailformat.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.HardwareAcceleratedThumbnailSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.HardwareAcceleratedThumbnailSupported
+
+## -description
+Gets a value that specifies if hardware acceleration is supported for thumbnails in photo sequence mode.
+
+## -property-value
+**true** if hardware acceleration is supported for thumbnails in photo sequence mode; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md), [DesiredThumbnailSize](lowlagphotosequencecontrol_desiredthumbnailsize.md), [ThumbnailFormat](lowlagphotosequencecontrol_thumbnailformat.md)
\ No newline at end of file
diff --git a/windows.media.devices/lowlagphotosequencecontrol_maxpastphotos.md b/windows.media.devices/lowlagphotosequencecontrol_maxpastphotos.md
index e9796e32fc..3916a15598 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_maxpastphotos.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_maxpastphotos.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.MaxPastPhotos
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.MaxPastPhotos
## -description
Gets the maximum number of past photos that can be stored.
## -property-value
The maximum number of past photos.
## -remarks
The [PastPhotoLimit](lowlagphotosequencecontrol_pastphotolimit.md) sets the actual number of past photos that are stored.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.MaxPastPhotos
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.MaxPastPhotos
+
+## -description
+Gets the maximum number of past photos that can be stored.
+
+## -property-value
+The maximum number of past photos.
+
+## -remarks
+The [PastPhotoLimit](lowlagphotosequencecontrol_pastphotolimit.md) sets the actual number of past photos that are stored.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotosequencecontrol_maxphotospersecond.md b/windows.media.devices/lowlagphotosequencecontrol_maxphotospersecond.md
index 8c770fc074..5f41924b1b 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_maxphotospersecond.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_maxphotospersecond.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.MaxPhotosPerSecond
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.MaxPhotosPerSecond
## -description
Gets the maximum number of photos that can be taken per second.
## -property-value
The maximum number of photos per second.
## -remarks
The [PhotosPerSecondLimit](lowlagphotosequencecontrol_photospersecondlimit.md) sets the actual frame rate that photos are taken.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.MaxPhotosPerSecond
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.MaxPhotosPerSecond
+
+## -description
+Gets the maximum number of photos that can be taken per second.
+
+## -property-value
+The maximum number of photos per second.
+
+## -remarks
+The [PhotosPerSecondLimit](lowlagphotosequencecontrol_photospersecondlimit.md) sets the actual frame rate that photos are taken.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotosequencecontrol_pastphotolimit.md b/windows.media.devices/lowlagphotosequencecontrol_pastphotolimit.md
index ab5973f3ff..e222379102 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_pastphotolimit.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_pastphotolimit.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.PastPhotoLimit
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.PastPhotoLimit
## -description
Gets or sets a value that specifies the number of past photos to store.
## -property-value
The number of past photos to store. To determine the maximum number of past photos that can be stored, check the [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md) property.
## -remarks
To determine the maximum number of past photos that can be stored, check the [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md) property.
The actual number of past photos cannot be more than [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md), which is the maximum number of past photos that is supported by the driver. The number of past photos returned will be the smaller of the following values: [PastPhotoLimit](lowlagphotosequencecontrol_pastphotolimit.md), [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md), or the current number of available past photos.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.PastPhotoLimit
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.PastPhotoLimit
+
+## -description
+Gets or sets a value that specifies the number of past photos to store.
+
+## -property-value
+The number of past photos to store. To determine the maximum number of past photos that can be stored, check the [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md) property.
+
+## -remarks
+To determine the maximum number of past photos that can be stored, check the [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md) property.
+
+The actual number of past photos cannot be more than [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md), which is the maximum number of past photos that is supported by the driver. The number of past photos returned will be the smaller of the following values: [PastPhotoLimit](lowlagphotosequencecontrol_pastphotolimit.md), [MaxPastPhotos](lowlagphotosequencecontrol_maxpastphotos.md), or the current number of available past photos.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotosequencecontrol_photospersecondlimit.md b/windows.media.devices/lowlagphotosequencecontrol_photospersecondlimit.md
index d921115c25..2a49fe9a95 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_photospersecondlimit.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_photospersecondlimit.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.PhotosPerSecondLimit
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.PhotosPerSecondLimit
## -description
Gets or sets the number of photos that are taken per second.
## -property-value
The number of photos taken per second.
## -remarks
To determine the maximum number photos per second supported by capture device, check the [MaxPhotosPerSecond](lowlagphotosequencecontrol_maxphotospersecond.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.PhotosPerSecondLimit
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.PhotosPerSecondLimit
+
+## -description
+Gets or sets the number of photos that are taken per second.
+
+## -property-value
+The number of photos taken per second.
+
+## -remarks
+To determine the maximum number photos per second supported by capture device, check the [MaxPhotosPerSecond](lowlagphotosequencecontrol_maxphotospersecond.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotosequencecontrol_supported.md b/windows.media.devices/lowlagphotosequencecontrol_supported.md
index 4b4e069bcc..c501bf0c50 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_supported.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.Supported
## -description
Gets a value that specifies if the capture device supports low shutter lag photo sequence mode.
## -property-value
**true** if photo sequence mode is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.Supported
+
+## -description
+Gets a value that specifies if the capture device supports low shutter lag photo sequence mode.
+
+## -property-value
+**true** if photo sequence mode is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/lowlagphotosequencecontrol_thumbnailenabled.md b/windows.media.devices/lowlagphotosequencecontrol_thumbnailenabled.md
index c3b818c769..851b5173bd 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_thumbnailenabled.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_thumbnailenabled.md
@@ -1,3 +1,30 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.ThumbnailEnabled
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.ThumbnailEnabled
## -description
Gets a value that enables and disables thumbnail support in photo sequence mode.
## -property-value
**true** if thumbnails are enabled; otherwise, **false**.
## -remarks
Thumbnails are supported for a low shutter lag single photos and photo sequences.
To enable thumbnails, set [ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md) to **true**.
You can set the desired thumbnail size through [DesiredThumbnailSize](lowlagphotosequencecontrol_desiredthumbnailsize.md) and set the thumbnail format through [ThumbnailFormat](lowlagphotosequencecontrol_thumbnailformat.md).
## -examples
## -see-also
[ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md), [DesiredThumbnailSize](lowlagphotosequencecontrol_desiredthumbnailsize.md), [ThumbnailFormat](lowlagphotosequencecontrol_thumbnailformat.md), [HardwareAcceleratedThumbnailSupported](lowlagphotosequencecontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.ThumbnailEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.ThumbnailEnabled
+
+## -description
+Gets a value that enables and disables thumbnail support in photo sequence mode.
+
+## -property-value
+**true** if thumbnails are enabled; otherwise, **false**.
+
+## -remarks
+Thumbnails are supported for a low shutter lag single photos and photo sequences.
+
+To enable thumbnails, set [ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md) to **true**.
+
+You can set the desired thumbnail size through [DesiredThumbnailSize](lowlagphotosequencecontrol_desiredthumbnailsize.md) and set the thumbnail format through [ThumbnailFormat](lowlagphotosequencecontrol_thumbnailformat.md).
+
+
+
+## -examples
+
+## -see-also
+[ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md), [DesiredThumbnailSize](lowlagphotosequencecontrol_desiredthumbnailsize.md), [ThumbnailFormat](lowlagphotosequencecontrol_thumbnailformat.md), [HardwareAcceleratedThumbnailSupported](lowlagphotosequencecontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
diff --git a/windows.media.devices/lowlagphotosequencecontrol_thumbnailformat.md b/windows.media.devices/lowlagphotosequencecontrol_thumbnailformat.md
index 36b3e6ebdb..fa9496acce 100644
--- a/windows.media.devices/lowlagphotosequencecontrol_thumbnailformat.md
+++ b/windows.media.devices/lowlagphotosequencecontrol_thumbnailformat.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.ThumbnailFormat
--api-type: winrt property
----
# Windows.Media.Devices.LowLagPhotoSequenceControl.ThumbnailFormat
## -description
Gets or sets the media format for the thumbnails.
## -property-value
The media format for the thumbnails.
## -remarks
## -examples
## -see-also
[ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md), [DesiredThumbnailSize](lowlagphotosequencecontrol_desiredthumbnailsize.md), [HardwareAcceleratedThumbnailSupported](lowlagphotosequencecontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.LowLagPhotoSequenceControl.ThumbnailFormat
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.LowLagPhotoSequenceControl.ThumbnailFormat
+
+## -description
+Gets or sets the media format for the thumbnails.
+
+## -property-value
+The media format for the thumbnails.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[ThumbnailEnabled](lowlagphotosequencecontrol_thumbnailenabled.md), [DesiredThumbnailSize](lowlagphotosequencecontrol_desiredthumbnailsize.md), [HardwareAcceleratedThumbnailSupported](lowlagphotosequencecontrol_hardwareacceleratedthumbnailsupported.md)
\ No newline at end of file
diff --git a/windows.media.devices/mediadevice_defaultaudiocapturedevicechanged.md b/windows.media.devices/mediadevice_defaultaudiocapturedevicechanged.md
index f39f81cda6..df772590d4 100644
--- a/windows.media.devices/mediadevice_defaultaudiocapturedevicechanged.md
+++ b/windows.media.devices/mediadevice_defaultaudiocapturedevicechanged.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Devices.MediaDevice.DefaultAudioCaptureDeviceChanged
--api-type: winrt event
----
# Windows.Media.Devices.MediaDevice.DefaultAudioCaptureDeviceChanged
## -description
Raised when the default audio capture device is changed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Devices.MediaDevice.DefaultAudioCaptureDeviceChanged
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Devices.MediaDevice.DefaultAudioCaptureDeviceChanged
+
+## -description
+Raised when the default audio capture device is changed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevice_defaultaudiorenderdevicechanged.md b/windows.media.devices/mediadevice_defaultaudiorenderdevicechanged.md
index a6b896f0ca..3388d19402 100644
--- a/windows.media.devices/mediadevice_defaultaudiorenderdevicechanged.md
+++ b/windows.media.devices/mediadevice_defaultaudiorenderdevicechanged.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Devices.MediaDevice.DefaultAudioRenderDeviceChanged
--api-type: winrt event
----
# Windows.Media.Devices.MediaDevice.DefaultAudioRenderDeviceChanged
## -description
Raised when the default audio render device is changed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Devices.MediaDevice.DefaultAudioRenderDeviceChanged
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Devices.MediaDevice.DefaultAudioRenderDeviceChanged
+
+## -description
+Raised when the default audio render device is changed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevice_getaudiocaptureselector_829052994.md b/windows.media.devices/mediadevice_getaudiocaptureselector_829052994.md
index d6efc5d8aa..5681c252b8 100644
--- a/windows.media.devices/mediadevice_getaudiocaptureselector_829052994.md
+++ b/windows.media.devices/mediadevice_getaudiocaptureselector_829052994.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.MediaDevice.GetAudioCaptureSelector
--api-type: winrt method
----
# Windows.Media.Devices.MediaDevice.GetAudioCaptureSelector
## -description
Returns the identifier string of a device for capturing audio.
## -returns
The identifier string of the audio capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.MediaDevice.GetAudioCaptureSelector
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.MediaDevice.GetAudioCaptureSelector
+
+## -description
+Returns the identifier string of a device for capturing audio.
+
+## -returns
+The identifier string of the audio capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevice_getaudiorenderselector_1223331501.md b/windows.media.devices/mediadevice_getaudiorenderselector_1223331501.md
index 6ee89a2665..0560b914e0 100644
--- a/windows.media.devices/mediadevice_getaudiorenderselector_1223331501.md
+++ b/windows.media.devices/mediadevice_getaudiorenderselector_1223331501.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.MediaDevice.GetAudioRenderSelector
--api-type: winrt method
----
# Windows.Media.Devices.MediaDevice.GetAudioRenderSelector
## -description
Returns the identifier string of a device for rendering audio.
## -returns
The identifier string of the audio rendering device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.MediaDevice.GetAudioRenderSelector
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.MediaDevice.GetAudioRenderSelector
+
+## -description
+Returns the identifier string of a device for rendering audio.
+
+## -returns
+The identifier string of the audio rendering device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevice_getdefaultaudiocaptureid_14449156.md b/windows.media.devices/mediadevice_getdefaultaudiocaptureid_14449156.md
index f6c286c75d..f45cff848a 100644
--- a/windows.media.devices/mediadevice_getdefaultaudiocaptureid_14449156.md
+++ b/windows.media.devices/mediadevice_getdefaultaudiocaptureid_14449156.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.MediaDevice.GetDefaultAudioCaptureId(Windows.Media.Devices.AudioDeviceRole)
--api-type: winrt method
----
# Windows.Media.Devices.MediaDevice.GetDefaultAudioCaptureId
## -description
Returns the identifier string of the default device for capturing audio in the specified role.
## -parameters
### -param role
The specified audio device role (console, media, or communications).
## -returns
The identifier string of the default device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.MediaDevice.GetDefaultAudioCaptureId(Windows.Media.Devices.AudioDeviceRole)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.MediaDevice.GetDefaultAudioCaptureId
+
+## -description
+Returns the identifier string of the default device for capturing audio in the specified role.
+
+## -parameters
+### -param role
+The specified audio device role (console, media, or communications).
+
+## -returns
+The identifier string of the default device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevice_getdefaultaudiorenderid_1952019825.md b/windows.media.devices/mediadevice_getdefaultaudiorenderid_1952019825.md
index 498c519c01..38a0c7240c 100644
--- a/windows.media.devices/mediadevice_getdefaultaudiorenderid_1952019825.md
+++ b/windows.media.devices/mediadevice_getdefaultaudiorenderid_1952019825.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.MediaDevice.GetDefaultAudioRenderId(Windows.Media.Devices.AudioDeviceRole)
--api-type: winrt method
----
# Windows.Media.Devices.MediaDevice.GetDefaultAudioRenderId
## -description
Returns the identifier string of the default device for rendering audio in the specified role.
## -parameters
### -param role
The specified audio device role (console, media, or communications).
## -returns
The identifier string of the default device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.MediaDevice.GetDefaultAudioRenderId(Windows.Media.Devices.AudioDeviceRole)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.MediaDevice.GetDefaultAudioRenderId
+
+## -description
+Returns the identifier string of the default device for rendering audio in the specified role.
+
+## -parameters
+### -param role
+The specified audio device role (console, media, or communications).
+
+## -returns
+The identifier string of the default device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevice_getvideocaptureselector_313102142.md b/windows.media.devices/mediadevice_getvideocaptureselector_313102142.md
index e82e4d2380..260378b0f0 100644
--- a/windows.media.devices/mediadevice_getvideocaptureselector_313102142.md
+++ b/windows.media.devices/mediadevice_getvideocaptureselector_313102142.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.MediaDevice.GetVideoCaptureSelector
--api-type: winrt method
----
# Windows.Media.Devices.MediaDevice.GetVideoCaptureSelector
## -description
Returns the identifier string of a device for capturing video.
## -returns
The identifier string of the video capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.MediaDevice.GetVideoCaptureSelector
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.MediaDevice.GetVideoCaptureSelector
+
+## -description
+Returns the identifier string of a device for capturing video.
+
+## -returns
+The identifier string of the video capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrol_capabilities.md b/windows.media.devices/mediadevicecontrol_capabilities.md
index 6f91807a4b..a616d0e1a9 100644
--- a/windows.media.devices/mediadevicecontrol_capabilities.md
+++ b/windows.media.devices/mediadevicecontrol_capabilities.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.MediaDeviceControl.Capabilities
--api-type: winrt property
----
# Windows.Media.Devices.MediaDeviceControl.Capabilities
## -description
Gets the capabilities of the camera for this camera setting.
## -property-value
The capabilities, including the supported range of values, the default value, and the step size.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.MediaDeviceControl.Capabilities
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControl.Capabilities
+
+## -description
+Gets the capabilities of the camera for this camera setting.
+
+## -property-value
+The capabilities, including the supported range of values, the default value, and the step size.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrol_trygetauto_1184642289.md b/windows.media.devices/mediadevicecontrol_trygetauto_1184642289.md
index ae3a6201e7..708d8fbe31 100644
--- a/windows.media.devices/mediadevicecontrol_trygetauto_1184642289.md
+++ b/windows.media.devices/mediadevicecontrol_trygetauto_1184642289.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.Devices.MediaDeviceControl.TryGetAuto(System.Boolean@)
--api-type: winrt method
----
# Windows.Media.Devices.MediaDeviceControl.TryGetAuto
## -description
Indicates whether automatic adjustment of the camera setting is enabled.
## -parameters
### -param value
True if automatic adjustment is enabled; false otherwise.
## -returns
Returns true if the method succeeds, or false otherwise.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.MediaDeviceControl.TryGetAuto(System.Boolean@)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControl.TryGetAuto
+
+## -description
+Indicates whether automatic adjustment of the camera setting is enabled.
+
+
+
+
+## -parameters
+### -param value
+True if automatic adjustment is enabled; false otherwise.
+
+## -returns
+Returns true if the method succeeds, or false otherwise.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrol_trygetvalue_587676813.md b/windows.media.devices/mediadevicecontrol_trygetvalue_587676813.md
index 3a64ad09de..b76929720e 100644
--- a/windows.media.devices/mediadevicecontrol_trygetvalue_587676813.md
+++ b/windows.media.devices/mediadevicecontrol_trygetvalue_587676813.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.MediaDeviceControl.TryGetValue(System.Double@)
--api-type: winrt method
----
# Windows.Media.Devices.MediaDeviceControl.TryGetValue
## -description
Gets the value of the camera setting.
## -parameters
### -param value
The current value of the setting. The units depend on the setting.
## -returns
Returns true if the method succeeds, or false otherwise.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.MediaDeviceControl.TryGetValue(System.Double@)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControl.TryGetValue
+
+## -description
+Gets the value of the camera setting.
+
+## -parameters
+### -param value
+The current value of the setting. The units depend on the setting.
+
+## -returns
+Returns true if the method succeeds, or false otherwise.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrol_trysetauto_1813835221.md b/windows.media.devices/mediadevicecontrol_trysetauto_1813835221.md
index 43799763aa..94be6d2592 100644
--- a/windows.media.devices/mediadevicecontrol_trysetauto_1813835221.md
+++ b/windows.media.devices/mediadevicecontrol_trysetauto_1813835221.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Devices.MediaDeviceControl.TrySetAuto(System.Boolean)
--api-type: winrt method
----
# Windows.Media.Devices.MediaDeviceControl.TrySetAuto
## -description
Enables or disables automatic adjustment of the camera setting.
## -parameters
### -param value
True to enable automatic adjustment; or false to disable automatic adjustment. If false, call [TrySetValue](mediadevicecontrol_trysetvalue.md) to adjust the setting.
## -returns
Returns true if the method succeeds, or false otherwise.
## -remarks
Depending on the setting and the camera model, the camera might not support automatic adjustment.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.MediaDeviceControl.TrySetAuto(System.Boolean)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControl.TrySetAuto
+
+## -description
+Enables or disables automatic adjustment of the camera setting.
+
+## -parameters
+### -param value
+True to enable automatic adjustment; or false to disable automatic adjustment. If false, call [TrySetValue](mediadevicecontrol_trysetvalue.md) to adjust the setting.
+
+## -returns
+Returns true if the method succeeds, or false otherwise.
+
+## -remarks
+Depending on the setting and the camera model, the camera might not support automatic adjustment.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrol_trysetvalue_1874772851.md b/windows.media.devices/mediadevicecontrol_trysetvalue_1874772851.md
index 0d962a7b37..767c3602af 100644
--- a/windows.media.devices/mediadevicecontrol_trysetvalue_1874772851.md
+++ b/windows.media.devices/mediadevicecontrol_trysetvalue_1874772851.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Devices.MediaDeviceControl.TrySetValue(System.Double)
--api-type: winrt method
----
# Windows.Media.Devices.MediaDeviceControl.TrySetValue
## -description
Sets the camera setting.
## -parameters
### -param value
The new value of the camera setting. The units depend on the setting.
## -returns
Returns true if the method succeeds, or false otherwise.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.MediaDeviceControl.TrySetValue(System.Double)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControl.TrySetValue
+
+## -description
+Sets the camera setting.
+
+## -parameters
+### -param value
+The new value of the camera setting. The units depend on the setting.
+
+## -returns
+Returns true if the method succeeds, or false otherwise.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrolcapabilities_automodesupported.md b/windows.media.devices/mediadevicecontrolcapabilities_automodesupported.md
index 807fe95b0f..7ad7145664 100644
--- a/windows.media.devices/mediadevicecontrolcapabilities_automodesupported.md
+++ b/windows.media.devices/mediadevicecontrolcapabilities_automodesupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.AutoModeSupported
--api-type: winrt property
----
# Windows.Media.Devices.MediaDeviceControlCapabilities.AutoModeSupported
## -description
Queries whether the camera supports automatic adjustment of the setting.
## -property-value
True if the camera supports automatic adjustment of the setting; otherwise false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.AutoModeSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControlCapabilities.AutoModeSupported
+
+## -description
+Queries whether the camera supports automatic adjustment of the setting.
+
+## -property-value
+True if the camera supports automatic adjustment of the setting; otherwise false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrolcapabilities_default.md b/windows.media.devices/mediadevicecontrolcapabilities_default.md
index 3806751e0b..f0a191235a 100644
--- a/windows.media.devices/mediadevicecontrolcapabilities_default.md
+++ b/windows.media.devices/mediadevicecontrolcapabilities_default.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.Default
--api-type: winrt property
----
# Windows.Media.Devices.MediaDeviceControlCapabilities.Default
## -description
Gets the default value of the camera setting.
## -property-value
The default value.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.Default
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControlCapabilities.Default
+
+## -description
+Gets the default value of the camera setting.
+
+## -property-value
+The default value.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrolcapabilities_max.md b/windows.media.devices/mediadevicecontrolcapabilities_max.md
index 35d1294299..e8f9083f96 100644
--- a/windows.media.devices/mediadevicecontrolcapabilities_max.md
+++ b/windows.media.devices/mediadevicecontrolcapabilities_max.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.Max
--api-type: winrt property
----
# Windows.Media.Devices.MediaDeviceControlCapabilities.Max
## -description
Sets the maximum value of the camera setting.
## -property-value
The maximum value.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.Max
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControlCapabilities.Max
+
+## -description
+Sets the maximum value of the camera setting.
+
+## -property-value
+The maximum value.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrolcapabilities_min.md b/windows.media.devices/mediadevicecontrolcapabilities_min.md
index c56215f768..229a6362cc 100644
--- a/windows.media.devices/mediadevicecontrolcapabilities_min.md
+++ b/windows.media.devices/mediadevicecontrolcapabilities_min.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.Min
--api-type: winrt property
----
# Windows.Media.Devices.MediaDeviceControlCapabilities.Min
## -description
Gets the minimum value of the camera setting.
## -property-value
The minimum value.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.Min
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControlCapabilities.Min
+
+## -description
+Gets the minimum value of the camera setting.
+
+## -property-value
+The minimum value.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrolcapabilities_step.md b/windows.media.devices/mediadevicecontrolcapabilities_step.md
index 9fe056c744..f6dc06f0c9 100644
--- a/windows.media.devices/mediadevicecontrolcapabilities_step.md
+++ b/windows.media.devices/mediadevicecontrolcapabilities_step.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.Step
--api-type: winrt property
----
# Windows.Media.Devices.MediaDeviceControlCapabilities.Step
## -description
Ges the step size for the setting. The step size is the smallest increment by which the property can change.
## -property-value
The step size.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.Step
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControlCapabilities.Step
+
+## -description
+Ges the step size for the setting. The step size is the smallest increment by which the property can change.
+
+## -property-value
+The step size.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/mediadevicecontrolcapabilities_supported.md b/windows.media.devices/mediadevicecontrolcapabilities_supported.md
index 0e30995617..c84fec441f 100644
--- a/windows.media.devices/mediadevicecontrolcapabilities_supported.md
+++ b/windows.media.devices/mediadevicecontrolcapabilities_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.Supported
--api-type: winrt property
----
# Windows.Media.Devices.MediaDeviceControlCapabilities.Supported
## -description
Indicates whether the camera supports this camera setting.
## -property-value
True if the camera supports the setting; otherwise false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.MediaDeviceControlCapabilities.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.MediaDeviceControlCapabilities.Supported
+
+## -description
+Indicates whether the camera supports this camera setting.
+
+## -property-value
+True if the camera supports the setting; otherwise false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/opticalimagestabilizationcontrol.md b/windows.media.devices/opticalimagestabilizationcontrol.md
index 6a5c57278c..0bfe34989f 100644
--- a/windows.media.devices/opticalimagestabilizationcontrol.md
+++ b/windows.media.devices/opticalimagestabilizationcontrol.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Devices.OpticalImageStabilizationControl
--api-type: winrt class
----
# Windows.Media.Devices.OpticalImageStabilizationControl
## -description
When supported, allows an app to enable optical image stabilization on the capture device.
## -remarks
Get an instance of this class by accessing the [VideoDeviceController.OpticalImageStabilizationControl](videodevicecontroller_opticalimagestabilizationcontrol.md) property.
For how-to guidance for using the **OpticalImageStabilizationControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
## -examples
## -see-also
[Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.OpticalImageStabilizationControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.OpticalImageStabilizationControl
+
+## -description
+When supported, allows an app to enable optical image stabilization on the capture device.
+
+## -remarks
+Get an instance of this class by accessing the [VideoDeviceController.OpticalImageStabilizationControl](videodevicecontroller_opticalimagestabilizationcontrol.md) property.
+
+For how-to guidance for using the **OpticalImageStabilizationControl**, see [Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture).
+
+## -examples
+
+## -see-also
+[Manual camera controls for photo and video capture](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/capture-device-controls-for-photo-and-video-capture)
\ No newline at end of file
diff --git a/windows.media.devices/opticalimagestabilizationcontrol_mode.md b/windows.media.devices/opticalimagestabilizationcontrol_mode.md
index 3e17c71a87..b4b218fe64 100644
--- a/windows.media.devices/opticalimagestabilizationcontrol_mode.md
+++ b/windows.media.devices/opticalimagestabilizationcontrol_mode.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.OpticalImageStabilizationControl.Mode
--api-type: winrt property
----
# Windows.Media.Devices.OpticalImageStabilizationControl.Mode
## -description
Gets or sets a value indicating the current optical image stabilization mode of the capture device.
## -property-value
The current optical image stabilization mode of the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.OpticalImageStabilizationControl.Mode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.OpticalImageStabilizationControl.Mode
+
+## -description
+Gets or sets a value indicating the current optical image stabilization mode of the capture device.
+
+## -property-value
+The current optical image stabilization mode of the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/opticalimagestabilizationcontrol_supported.md b/windows.media.devices/opticalimagestabilizationcontrol_supported.md
index 32d6d3bfe6..1b0d36b78c 100644
--- a/windows.media.devices/opticalimagestabilizationcontrol_supported.md
+++ b/windows.media.devices/opticalimagestabilizationcontrol_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.OpticalImageStabilizationControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.OpticalImageStabilizationControl.Supported
## -description
Gets a value that indicates if the capture device supports the [OpticalImageStabilizationControl](opticalimagestabilizationcontrol.md).
## -property-value
True if the [OpticalImageStabilizationControl](opticalimagestabilizationcontrol.md) is supported; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.OpticalImageStabilizationControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.OpticalImageStabilizationControl.Supported
+
+## -description
+Gets a value that indicates if the capture device supports the [OpticalImageStabilizationControl](opticalimagestabilizationcontrol.md).
+
+## -property-value
+True if the [OpticalImageStabilizationControl](opticalimagestabilizationcontrol.md) is supported; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/opticalimagestabilizationcontrol_supportedmodes.md b/windows.media.devices/opticalimagestabilizationcontrol_supportedmodes.md
index 90fa048c36..6117453e00 100644
--- a/windows.media.devices/opticalimagestabilizationcontrol_supportedmodes.md
+++ b/windows.media.devices/opticalimagestabilizationcontrol_supportedmodes.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.OpticalImageStabilizationControl.SupportedModes
--api-type: winrt property
----
# Windows.Media.Devices.OpticalImageStabilizationControl.SupportedModes
## -description
Gets the list of [OpticalImageStabilizationMode](opticalimagestabilizationmode.md) values indicating the modes supported by the capture device.
## -property-value
The list of supported [OpticalImageStabilizationMode](opticalimagestabilizationmode.md) values.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.OpticalImageStabilizationControl.SupportedModes
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.OpticalImageStabilizationControl.SupportedModes
+
+## -description
+Gets the list of [OpticalImageStabilizationMode](opticalimagestabilizationmode.md) values indicating the modes supported by the capture device.
+
+## -property-value
+The list of supported [OpticalImageStabilizationMode](opticalimagestabilizationmode.md) values.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/photoconfirmationcontrol.md b/windows.media.devices/photoconfirmationcontrol.md
index cace219c4a..211b2077e3 100644
--- a/windows.media.devices/photoconfirmationcontrol.md
+++ b/windows.media.devices/photoconfirmationcontrol.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Devices.PhotoConfirmationControl
--api-type: winrt class
----
# Windows.Media.Devices.PhotoConfirmationControl
## -description
Provides functionality for controlling the photo confirmation settings on a capture device.
## -remarks
Get an instance of this class by accessing the [VideoDeviceController.PhotoConfirmationControl](videodevicecontroller_photoconfirmationcontrol.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.PhotoConfirmationControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.PhotoConfirmationControl
+
+## -description
+Provides functionality for controlling the photo confirmation settings on a capture device.
+
+## -remarks
+Get an instance of this class by accessing the [VideoDeviceController.PhotoConfirmationControl](videodevicecontroller_photoconfirmationcontrol.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/photoconfirmationcontrol_enabled.md b/windows.media.devices/photoconfirmationcontrol_enabled.md
index 422370110e..6918def4fe 100644
--- a/windows.media.devices/photoconfirmationcontrol_enabled.md
+++ b/windows.media.devices/photoconfirmationcontrol_enabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.PhotoConfirmationControl.Enabled
--api-type: winrt property
----
# Windows.Media.Devices.PhotoConfirmationControl.Enabled
## -description
Gets or sets a value indicating whether photo confirmation is enabled.
## -property-value
A value indicating whether photo confirmation is enabled.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.PhotoConfirmationControl.Enabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.PhotoConfirmationControl.Enabled
+
+## -description
+Gets or sets a value indicating whether photo confirmation is enabled.
+
+## -property-value
+A value indicating whether photo confirmation is enabled.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/photoconfirmationcontrol_pixelformat.md b/windows.media.devices/photoconfirmationcontrol_pixelformat.md
index 410edbad86..c7eaff635e 100644
--- a/windows.media.devices/photoconfirmationcontrol_pixelformat.md
+++ b/windows.media.devices/photoconfirmationcontrol_pixelformat.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.PhotoConfirmationControl.PixelFormat
--api-type: winrt property
----
# Windows.Media.Devices.PhotoConfirmationControl.PixelFormat
## -description
Gets or sets the desired pixel format for photo confirmation frames.
## -property-value
The desired pixel format for photo confirmation frames.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.PhotoConfirmationControl.PixelFormat
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.PhotoConfirmationControl.PixelFormat
+
+## -description
+Gets or sets the desired pixel format for photo confirmation frames.
+
+## -property-value
+The desired pixel format for photo confirmation frames.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/photoconfirmationcontrol_supported.md b/windows.media.devices/photoconfirmationcontrol_supported.md
index a900f97791..110ecb5fd2 100644
--- a/windows.media.devices/photoconfirmationcontrol_supported.md
+++ b/windows.media.devices/photoconfirmationcontrol_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.PhotoConfirmationControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.PhotoConfirmationControl.Supported
## -description
Gets a value indicating whether photo confirmation is supported by the capture device.
## -property-value
A value indicating whether photo confirmation is supported by the capture device.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.PhotoConfirmationControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.PhotoConfirmationControl.Supported
+
+## -description
+Gets a value indicating whether photo confirmation is supported by the capture device.
+
+## -property-value
+A value indicating whether photo confirmation is supported by the capture device.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/redialrequestedeventargs_handled_1519539088.md b/windows.media.devices/redialrequestedeventargs_handled_1519539088.md
index 8941630c77..6811c4856b 100644
--- a/windows.media.devices/redialrequestedeventargs_handled_1519539088.md
+++ b/windows.media.devices/redialrequestedeventargs_handled_1519539088.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Devices.RedialRequestedEventArgs.Handled
--api-type: winrt method
----
# Windows.Media.Devices.RedialRequestedEventArgs.Handled
## -description
Indicates that the [RedialRequested](callcontrol_redialrequested.md) event has been handled.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.RedialRequestedEventArgs.Handled
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.RedialRequestedEventArgs.Handled
+
+## -description
+Indicates that the [RedialRequested](callcontrol_redialrequested.md) event has been handled.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionofinterest.md b/windows.media.devices/regionofinterest.md
index e87d8d16b9..6f029d561f 100644
--- a/windows.media.devices/regionofinterest.md
+++ b/windows.media.devices/regionofinterest.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Devices.RegionOfInterest
--api-type: winrt class
----
# Windows.Media.Devices.RegionOfInterest
## -description
Represents a region of interest which is a rectangular region on the image which is used for functions such as focus and exposure.
## -remarks
Get an instance of this class by accessing the [RegionOfInterest](regionofinterest_regionofinterest.md) property.
The region of interest specifies the rectangular area of preview that functions such as focus and exposure are computed over. This enables scenarios such as tap to focus.
## -examples
## -see-also
[RegionsOfInterest](regionsofinterestcontrol.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.RegionOfInterest
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.RegionOfInterest
+
+## -description
+Represents a region of interest which is a rectangular region on the image which is used for functions such as focus and exposure.
+
+## -remarks
+Get an instance of this class by accessing the [RegionOfInterest](regionofinterest_regionofinterest.md) property.
+
+The region of interest specifies the rectangular area of preview that functions such as focus and exposure are computed over. This enables scenarios such as tap to focus.
+
+## -examples
+
+## -see-also
+[RegionsOfInterest](regionsofinterestcontrol.md)
\ No newline at end of file
diff --git a/windows.media.devices/regionofinterest_autoexposureenabled.md b/windows.media.devices/regionofinterest_autoexposureenabled.md
index a43c1206fc..613218b0f9 100644
--- a/windows.media.devices/regionofinterest_autoexposureenabled.md
+++ b/windows.media.devices/regionofinterest_autoexposureenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.RegionOfInterest.AutoExposureEnabled
--api-type: winrt property
----
# Windows.Media.Devices.RegionOfInterest.AutoExposureEnabled
## -description
Gets or sets a value that specifies if auto exposure is enabled.
## -property-value
**true** if auto exposure is enabled; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionOfInterest.AutoExposureEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionOfInterest.AutoExposureEnabled
+
+## -description
+Gets or sets a value that specifies if auto exposure is enabled.
+
+## -property-value
+**true** if auto exposure is enabled; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionofinterest_autofocusenabled.md b/windows.media.devices/regionofinterest_autofocusenabled.md
index eda9c11fec..a500ff9c79 100644
--- a/windows.media.devices/regionofinterest_autofocusenabled.md
+++ b/windows.media.devices/regionofinterest_autofocusenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.RegionOfInterest.AutoFocusEnabled
--api-type: winrt property
----
# Windows.Media.Devices.RegionOfInterest.AutoFocusEnabled
## -description
Gets or sets a value that specifies if auto focus is enabled.
## -property-value
**true** if auto focus is enabled; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionOfInterest.AutoFocusEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionOfInterest.AutoFocusEnabled
+
+## -description
+Gets or sets a value that specifies if auto focus is enabled.
+
+## -property-value
+**true** if auto focus is enabled; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionofinterest_autowhitebalanceenabled.md b/windows.media.devices/regionofinterest_autowhitebalanceenabled.md
index 573f52d040..7887bb75c0 100644
--- a/windows.media.devices/regionofinterest_autowhitebalanceenabled.md
+++ b/windows.media.devices/regionofinterest_autowhitebalanceenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.RegionOfInterest.AutoWhiteBalanceEnabled
--api-type: winrt property
----
# Windows.Media.Devices.RegionOfInterest.AutoWhiteBalanceEnabled
## -description
Gets or sets a value that specifies if auto white balance is enabled.
## -property-value
**true** if auto white balance; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionOfInterest.AutoWhiteBalanceEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionOfInterest.AutoWhiteBalanceEnabled
+
+## -description
+Gets or sets a value that specifies if auto white balance is enabled.
+
+## -property-value
+**true** if auto white balance; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionofinterest_bounds.md b/windows.media.devices/regionofinterest_bounds.md
index b4e9fce782..1d2c0e1e50 100644
--- a/windows.media.devices/regionofinterest_bounds.md
+++ b/windows.media.devices/regionofinterest_bounds.md
@@ -1,3 +1,27 @@
----
-api-id: P:Windows.Media.Devices.RegionOfInterest.Bounds
--api-type: winrt property
----
# Windows.Media.Devices.RegionOfInterest.Bounds
## -description
Gets or sets the rectangle that defines the region of focus.
## -property-value
The rectangle that defines the region of focus.
## -remarks
To specify a point with non-normalized coordinates, meaning the [BoundsNormalized](regionofinterest_boundsnormalized.md) property is not set or set to FALSE, you should specify a rectangle with width of 1 and height of 1.
To specify a point with normalized coordinates, meaning [BoundsNormalized](regionofinterest_boundsnormalized.md) is set to TRUE, you should specify a rectangle with width of FLT_EPSILON and height of FLT_EPSILON.
If the region of interest specified by the developer is smaller than what is supported by the hardware, the driver will default to the smallest supported rectangle possible that fully contains the specified region.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionOfInterest.Bounds
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionOfInterest.Bounds
+
+## -description
+Gets or sets the rectangle that defines the region of focus.
+
+## -property-value
+The rectangle that defines the region of focus.
+
+## -remarks
+To specify a point with non-normalized coordinates, meaning the [BoundsNormalized](regionofinterest_boundsnormalized.md) property is not set or set to FALSE, you should specify a rectangle with width of 1 and height of 1.
+
+To specify a point with normalized coordinates, meaning [BoundsNormalized](regionofinterest_boundsnormalized.md) is set to TRUE, you should specify a rectangle with width of FLT_EPSILON and height of FLT_EPSILON.
+
+If the region of interest specified by the developer is smaller than what is supported by the hardware, the driver will default to the smallest supported rectangle possible that fully contains the specified region.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionofinterest_boundsnormalized.md b/windows.media.devices/regionofinterest_boundsnormalized.md
index 22a0b7407b..6b087e4805 100644
--- a/windows.media.devices/regionofinterest_boundsnormalized.md
+++ b/windows.media.devices/regionofinterest_boundsnormalized.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.RegionOfInterest.BoundsNormalized
--api-type: winrt property
----
# Windows.Media.Devices.RegionOfInterest.BoundsNormalized
## -description
Gets or sets a value indicating whether the [Bounds](regionofinterest_bounds.md) Rect is in pixels or is mapped to a range of 0 to 1.0.
## -property-value
A value indicating whether the [Bounds](regionofinterest_bounds.md) Rect is in pixels or is mapped to a range of 0 to 1.0.
## -remarks
For information on how this property affects the bounds of the region of interest, see the [Bounds](regionofinterest_bounds.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionOfInterest.BoundsNormalized
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionOfInterest.BoundsNormalized
+
+## -description
+Gets or sets a value indicating whether the [Bounds](regionofinterest_bounds.md) Rect is in pixels or is mapped to a range of 0 to 1.0.
+
+## -property-value
+A value indicating whether the [Bounds](regionofinterest_bounds.md) Rect is in pixels or is mapped to a range of 0 to 1.0.
+
+## -remarks
+For information on how this property affects the bounds of the region of interest, see the [Bounds](regionofinterest_bounds.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionofinterest_regionofinterest_1221375020.md b/windows.media.devices/regionofinterest_regionofinterest_1221375020.md
index 37e8af613e..e311bbc523 100644
--- a/windows.media.devices/regionofinterest_regionofinterest_1221375020.md
+++ b/windows.media.devices/regionofinterest_regionofinterest_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Devices.RegionOfInterest.#ctor
--api-type: winrt method
----
# Windows.Media.Devices.RegionOfInterest.RegionOfInterest
## -description
Creates a new instance of the [RegionOfInterest](regionofinterest.md) control.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.RegionOfInterest.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.RegionOfInterest.RegionOfInterest
+
+## -description
+Creates a new instance of the [RegionOfInterest](regionofinterest.md) control.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionofinterest_type.md b/windows.media.devices/regionofinterest_type.md
index 541f0e1e6c..0a2fa84c0e 100644
--- a/windows.media.devices/regionofinterest_type.md
+++ b/windows.media.devices/regionofinterest_type.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.RegionOfInterest.Type
--api-type: winrt property
----
# Windows.Media.Devices.RegionOfInterest.Type
## -description
Gets or sets the type of region represented by the [RegionOfInterest](regionofinterest.md) object.
## -property-value
The type of region represented by the [RegionOfInterest](regionofinterest.md) object.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionOfInterest.Type
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionOfInterest.Type
+
+## -description
+Gets or sets the type of region represented by the [RegionOfInterest](regionofinterest.md) object.
+
+## -property-value
+The type of region represented by the [RegionOfInterest](regionofinterest.md) object.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionofinterest_weight.md b/windows.media.devices/regionofinterest_weight.md
index 9040608d8b..8789fac95c 100644
--- a/windows.media.devices/regionofinterest_weight.md
+++ b/windows.media.devices/regionofinterest_weight.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.RegionOfInterest.Weight
--api-type: winrt property
----
# Windows.Media.Devices.RegionOfInterest.Weight
## -description
Gets or sets the weight of the region of interest.
## -property-value
Gets or sets the weight of the region of interest which is a value from 0-100.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionOfInterest.Weight
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionOfInterest.Weight
+
+## -description
+Gets or sets the weight of the region of interest.
+
+## -property-value
+Gets or sets the weight of the region of interest which is a value from 0-100.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionsofinterestcontrol.md b/windows.media.devices/regionsofinterestcontrol.md
index f5b126afe8..28fd2c57d5 100644
--- a/windows.media.devices/regionsofinterestcontrol.md
+++ b/windows.media.devices/regionsofinterestcontrol.md
@@ -1,3 +1,25 @@
----
-api-id: T:Windows.Media.Devices.RegionsOfInterestControl
--api-type: winrt class
----
# Windows.Media.Devices.RegionsOfInterestControl
## -description
Provides functionality to mange the regions of interest on a device.
## -remarks
The region of interest specifies the rectangular area of preview that functions such as focus and exposure are computed over. This enables scenarios such as tap to focus.
You can access the [RegionsOfInterestControl](regionsofinterestcontrol.md) for the capture device through the [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
For how-to guidance for using the **RegionOfInterest** object, see [Effects for analyzing camera frames](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture).
## -examples
## -see-also
[RegionOfInterest](regionofinterest.md), [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md), [Effects for analyzing camera frames](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.RegionsOfInterestControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.RegionsOfInterestControl
+
+## -description
+Provides functionality to mange the regions of interest on a device.
+
+## -remarks
+The region of interest specifies the rectangular area of preview that functions such as focus and exposure are computed over. This enables scenarios such as tap to focus.
+
+You can access the [RegionsOfInterestControl](regionsofinterestcontrol.md) for the capture device through the [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
+
+For how-to guidance for using the **RegionOfInterest** object, see [Effects for analyzing camera frames](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture).
+
+## -examples
+
+## -see-also
+[RegionOfInterest](regionofinterest.md), [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md), [Effects for analyzing camera frames](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/scene-analysis-for-media-capture)
\ No newline at end of file
diff --git a/windows.media.devices/regionsofinterestcontrol_autoexposuresupported.md b/windows.media.devices/regionsofinterestcontrol_autoexposuresupported.md
index 8d468747ad..b02065ff74 100644
--- a/windows.media.devices/regionsofinterestcontrol_autoexposuresupported.md
+++ b/windows.media.devices/regionsofinterestcontrol_autoexposuresupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.RegionsOfInterestControl.AutoExposureSupported
--api-type: winrt property
----
# Windows.Media.Devices.RegionsOfInterestControl.AutoExposureSupported
## -description
Gets a value that specifies if auto exposure is supported on the capture device.
## -property-value
**true** if auto exposure is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionsOfInterestControl.AutoExposureSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionsOfInterestControl.AutoExposureSupported
+
+## -description
+Gets a value that specifies if auto exposure is supported on the capture device.
+
+## -property-value
+**true** if auto exposure is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionsofinterestcontrol_autofocussupported.md b/windows.media.devices/regionsofinterestcontrol_autofocussupported.md
index 406972a61d..6ace8c9dd4 100644
--- a/windows.media.devices/regionsofinterestcontrol_autofocussupported.md
+++ b/windows.media.devices/regionsofinterestcontrol_autofocussupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.RegionsOfInterestControl.AutoFocusSupported
--api-type: winrt property
----
# Windows.Media.Devices.RegionsOfInterestControl.AutoFocusSupported
## -description
Gets a value that specifies if auto focus is supported on the capture device.
## -property-value
**true** if auto focus is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionsOfInterestControl.AutoFocusSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionsOfInterestControl.AutoFocusSupported
+
+## -description
+Gets a value that specifies if auto focus is supported on the capture device.
+
+## -property-value
+**true** if auto focus is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionsofinterestcontrol_autowhitebalancesupported.md b/windows.media.devices/regionsofinterestcontrol_autowhitebalancesupported.md
index 34cbe8a297..f7c59da965 100644
--- a/windows.media.devices/regionsofinterestcontrol_autowhitebalancesupported.md
+++ b/windows.media.devices/regionsofinterestcontrol_autowhitebalancesupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.RegionsOfInterestControl.AutoWhiteBalanceSupported
--api-type: winrt property
----
# Windows.Media.Devices.RegionsOfInterestControl.AutoWhiteBalanceSupported
## -description
Gets a value that specifies if auto white balance is supported on the capture device.
## -property-value
**true** if auto white balance is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionsOfInterestControl.AutoWhiteBalanceSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionsOfInterestControl.AutoWhiteBalanceSupported
+
+## -description
+Gets a value that specifies if auto white balance is supported on the capture device.
+
+## -property-value
+**true** if auto white balance is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionsofinterestcontrol_clearregionsasync_692756633.md b/windows.media.devices/regionsofinterestcontrol_clearregionsasync_692756633.md
index 554078e70d..b56f45b1cb 100644
--- a/windows.media.devices/regionsofinterestcontrol_clearregionsasync_692756633.md
+++ b/windows.media.devices/regionsofinterestcontrol_clearregionsasync_692756633.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Devices.RegionsOfInterestControl.ClearRegionsAsync
--api-type: winrt method
----
# Windows.Media.Devices.RegionsOfInterestControl.ClearRegionsAsync
## -description
Asynchronously clears the regions of interests.
## -returns
The object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.RegionsOfInterestControl.ClearRegionsAsync
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.RegionsOfInterestControl.ClearRegionsAsync
+
+## -description
+Asynchronously clears the regions of interests.
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionsofinterestcontrol_maxregions.md b/windows.media.devices/regionsofinterestcontrol_maxregions.md
index d0abe02c50..e96a3252b7 100644
--- a/windows.media.devices/regionsofinterestcontrol_maxregions.md
+++ b/windows.media.devices/regionsofinterestcontrol_maxregions.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.RegionsOfInterestControl.MaxRegions
--api-type: winrt property
----
# Windows.Media.Devices.RegionsOfInterestControl.MaxRegions
## -description
Gets the maximum number of regions of interest that can be specified.
## -property-value
The maximum number of regions of interest.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.RegionsOfInterestControl.MaxRegions
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.RegionsOfInterestControl.MaxRegions
+
+## -description
+Gets the maximum number of regions of interest that can be specified.
+
+## -property-value
+The maximum number of regions of interest.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/regionsofinterestcontrol_setregionsasync_745185679.md b/windows.media.devices/regionsofinterestcontrol_setregionsasync_745185679.md
index 20a522caf8..fdf5ec159b 100644
--- a/windows.media.devices/regionsofinterestcontrol_setregionsasync_745185679.md
+++ b/windows.media.devices/regionsofinterestcontrol_setregionsasync_745185679.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Devices.RegionsOfInterestControl.SetRegionsAsync(Windows.Foundation.Collections.IIterable{Windows.Media.Devices.RegionOfInterest})
--api-type: winrt method
----
# Windows.Media.Devices.RegionsOfInterestControl.SetRegionsAsync
## -description
Asynchronously sets the regions of interest.
## -parameters
### -param regions
The regions of interest.
## -returns
The object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
[SetRegionsAsync(IIterable(RegionOfInterest), Boolean)](regionsofinterestcontrol_setregionsasync_838101385.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.RegionsOfInterestControl.SetRegionsAsync(Windows.Foundation.Collections.IIterable{Windows.Media.Devices.RegionOfInterest})
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.RegionsOfInterestControl.SetRegionsAsync
+
+## -description
+Asynchronously sets the regions of interest.
+
+## -parameters
+### -param regions
+The regions of interest.
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[SetRegionsAsync(IIterable(RegionOfInterest), Boolean)](regionsofinterestcontrol_setregionsasync_838101385.md)
\ No newline at end of file
diff --git a/windows.media.devices/regionsofinterestcontrol_setregionsasync_838101385.md b/windows.media.devices/regionsofinterestcontrol_setregionsasync_838101385.md
index 2267d83ce0..5eead43eef 100644
--- a/windows.media.devices/regionsofinterestcontrol_setregionsasync_838101385.md
+++ b/windows.media.devices/regionsofinterestcontrol_setregionsasync_838101385.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.Devices.RegionsOfInterestControl.SetRegionsAsync(Windows.Foundation.Collections.IIterable{Windows.Media.Devices.RegionOfInterest},System.Boolean)
--api-type: winrt method
----
# Windows.Media.Devices.RegionsOfInterestControl.SetRegionsAsync
## -description
Asynchronously sets the regions of interest and specifies if the values should be locked.
## -parameters
### -param regions
The regions of interests.
### -param lockValues
Specifies if the values should be locked.
## -returns
The object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
[SetRegionsAsync(IIterable(RegionOfInterest))](regionsofinterestcontrol_setregionsasync_745185679.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.RegionsOfInterestControl.SetRegionsAsync(Windows.Foundation.Collections.IIterable{Windows.Media.Devices.RegionOfInterest},System.Boolean)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.RegionsOfInterestControl.SetRegionsAsync
+
+## -description
+Asynchronously sets the regions of interest and specifies if the values should be locked.
+
+## -parameters
+### -param regions
+The regions of interests.
+
+### -param lockValues
+Specifies if the values should be locked.
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[SetRegionsAsync(IIterable(RegionOfInterest))](regionsofinterestcontrol_setregionsasync_745185679.md)
\ No newline at end of file
diff --git a/windows.media.devices/scenemodecontrol.md b/windows.media.devices/scenemodecontrol.md
index cbaa2155ce..fd07457997 100644
--- a/windows.media.devices/scenemodecontrol.md
+++ b/windows.media.devices/scenemodecontrol.md
@@ -1,3 +1,25 @@
----
-api-id: T:Windows.Media.Devices.SceneModeControl
--api-type: winrt class
----
# Windows.Media.Devices.SceneModeControl
## -description
Provides functionality for controlling the scene mode settings on a capture device.
## -remarks
The [SceneModeControl ](scenemodecontrol.md) enables apps to tune the post-processing of captured frames to better match the scene being recorded. The [SupportedModes](scenemodecontrol_supportedmodes.md) enumeration specifies the modes, such as [Snow](capturescenemode.md), [Night](capturescenemode.md), and [Sport](capturescenemode.md), that are supported by the device.
To select a mode, call [SceneModeControl.SetValueAsync](scenemodecontrol_setvalueasync.md).
You can access the [SceneModeControl ](scenemodecontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
## -examples
## -see-also
[MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.SceneModeControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.SceneModeControl
+
+## -description
+Provides functionality for controlling the scene mode settings on a capture device.
+
+## -remarks
+The [SceneModeControl ](scenemodecontrol.md) enables apps to tune the post-processing of captured frames to better match the scene being recorded. The [SupportedModes](scenemodecontrol_supportedmodes.md) enumeration specifies the modes, such as [Snow](capturescenemode.md), [Night](capturescenemode.md), and [Sport](capturescenemode.md), that are supported by the device.
+
+To select a mode, call [SceneModeControl.SetValueAsync](scenemodecontrol_setvalueasync.md).
+
+You can access the [SceneModeControl ](scenemodecontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
+
+## -examples
+
+## -see-also
+[MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md)
\ No newline at end of file
diff --git a/windows.media.devices/scenemodecontrol_setvalueasync_1270895798.md b/windows.media.devices/scenemodecontrol_setvalueasync_1270895798.md
index bd950f0e18..309070a1bf 100644
--- a/windows.media.devices/scenemodecontrol_setvalueasync_1270895798.md
+++ b/windows.media.devices/scenemodecontrol_setvalueasync_1270895798.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Devices.SceneModeControl.SetValueAsync(Windows.Media.Devices.CaptureSceneMode)
--api-type: winrt method
----
# Windows.Media.Devices.SceneModeControl.SetValueAsync
## -description
Asynchronously sets the color temperature [Value](whitebalancecontrol_value.md).
## -parameters
### -param sceneMode
The scene mode to set the [Value](scenemodecontrol_value.md) property to.
## -returns
The object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
[SceneModeControl.Value](scenemodecontrol_value.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Devices.SceneModeControl.SetValueAsync(Windows.Media.Devices.CaptureSceneMode)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Devices.SceneModeControl.SetValueAsync
+
+## -description
+Asynchronously sets the color temperature [Value](whitebalancecontrol_value.md).
+
+## -parameters
+### -param sceneMode
+The scene mode to set the [Value](scenemodecontrol_value.md) property to.
+
+## -returns
+The object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[SceneModeControl.Value](scenemodecontrol_value.md)
\ No newline at end of file
diff --git a/windows.media.devices/scenemodecontrol_supportedmodes.md b/windows.media.devices/scenemodecontrol_supportedmodes.md
index 4fce74478e..1aeb0c0cac 100644
--- a/windows.media.devices/scenemodecontrol_supportedmodes.md
+++ b/windows.media.devices/scenemodecontrol_supportedmodes.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.SceneModeControl.SupportedModes
--api-type: winrt property
----
# Windows.Media.Devices.SceneModeControl.SupportedModes
## -description
Gets the scene modes supported on the capture device.
## -property-value
The supported scene modes.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.SceneModeControl.SupportedModes
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.SceneModeControl.SupportedModes
+
+## -description
+Gets the scene modes supported on the capture device.
+
+## -property-value
+The supported scene modes.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/scenemodecontrol_value.md b/windows.media.devices/scenemodecontrol_value.md
index 8491a88830..1956055dbf 100644
--- a/windows.media.devices/scenemodecontrol_value.md
+++ b/windows.media.devices/scenemodecontrol_value.md
@@ -1,3 +1,24 @@
----
-api-id: P:Windows.Media.Devices.SceneModeControl.Value
--api-type: winrt property
----
# Windows.Media.Devices.SceneModeControl.Value
## -description
Gets the current scene mod ethe capture device is set to.
## -property-value
The scene mode.
## -remarks
To set this property, call [SetValueAsync](scenemodecontrol_setvalueasync.md).
## -examples
## -see-also
[SetValueAsync](scenemodecontrol_setvalueasync.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.SceneModeControl.Value
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.SceneModeControl.Value
+
+## -description
+Gets the current scene mod ethe capture device is set to.
+
+## -property-value
+The scene mode.
+
+## -remarks
+To set this property, call [SetValueAsync](scenemodecontrol_setvalueasync.md).
+
+## -examples
+
+## -see-also
+[SetValueAsync](scenemodecontrol_setvalueasync.md)
\ No newline at end of file
diff --git a/windows.media.devices/torchcontrol.md b/windows.media.devices/torchcontrol.md
index aff20b7589..86e69286a3 100644
--- a/windows.media.devices/torchcontrol.md
+++ b/windows.media.devices/torchcontrol.md
@@ -1,3 +1,27 @@
----
-api-id: T:Windows.Media.Devices.TorchControl
--api-type: winrt class
----
# Windows.Media.Devices.TorchControl
## -description
Provides functionality for controlling the torch LED settings on a capture device.
## -remarks
The [TorchControl](torchcontrol.md) enables apps to manage the torch LED on a device. This can used in capture apps or in non-capture app to do things like brighten a room.
You can find out if a device supports this control by checking [TorchControl.Supported](torchcontrol_supported.md).
You can access the [TorchControl](torchcontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
For how-to guidance for using the **TorchControl**, see [Camera-independent Flashlight](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/camera-independent-flashlight).
## -examples
## -see-also
[MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Devices.TorchControl
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Devices.TorchControl
+
+## -description
+Provides functionality for controlling the torch LED settings on a capture device.
+
+## -remarks
+The [TorchControl](torchcontrol.md) enables apps to manage the torch LED on a device. This can used in capture apps or in non-capture app to do things like brighten a room.
+
+You can find out if a device supports this control by checking [TorchControl.Supported](torchcontrol_supported.md).
+
+You can access the [TorchControl](torchcontrol.md) for the capture device through [MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md).
+
+For how-to guidance for using the **TorchControl**, see [Camera-independent Flashlight](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/camera-independent-flashlight).
+
+## -examples
+
+## -see-also
+[MediaCapture.VideoDeviceController](../windows.media.capture/mediacapture_videodevicecontroller.md)
\ No newline at end of file
diff --git a/windows.media.devices/torchcontrol_enabled.md b/windows.media.devices/torchcontrol_enabled.md
index f7463b1464..64f177ac8d 100644
--- a/windows.media.devices/torchcontrol_enabled.md
+++ b/windows.media.devices/torchcontrol_enabled.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Devices.TorchControl.Enabled
--api-type: winrt property
----
# Windows.Media.Devices.TorchControl.Enabled
## -description
Gets or sets a value that enables and disables the torch LED on the device.
## -property-value
**true** if the torch LED is enabled; otherwise, **false**.
## -remarks
On some devices the torch will not emit light, even if **Enabled** is set to true, unless the device has a preview stream running and is actively capturing video. The recommended order of operations is to turn on the video preview, then turn on the torch by setting **Enabled** to true, and then initiate video capture. On some devices the torch will light up after the preview is started. On other devices, the torch may not light up until video capture is started.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.TorchControl.Enabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.TorchControl.Enabled
+
+## -description
+Gets or sets a value that enables and disables the torch LED on the device.
+
+## -property-value
+**true** if the torch LED is enabled; otherwise, **false**.
+
+## -remarks
+On some devices the torch will not emit light, even if **Enabled** is set to true, unless the device has a preview stream running and is actively capturing video. The recommended order of operations is to turn on the video preview, then turn on the torch by setting **Enabled** to true, and then initiate video capture. On some devices the torch will light up after the preview is started. On other devices, the torch may not light up until video capture is started.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/torchcontrol_powerpercent.md b/windows.media.devices/torchcontrol_powerpercent.md
index 61d9762b39..7f45375db2 100644
--- a/windows.media.devices/torchcontrol_powerpercent.md
+++ b/windows.media.devices/torchcontrol_powerpercent.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.TorchControl.PowerPercent
--api-type: winrt property
----
# Windows.Media.Devices.TorchControl.PowerPercent
## -description
Gets or sets the intensity of the torch LED.
## -property-value
The power percent the torch LED is set to.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.TorchControl.PowerPercent
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.TorchControl.PowerPercent
+
+## -description
+Gets or sets the intensity of the torch LED.
+
+## -property-value
+The power percent the torch LED is set to.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/torchcontrol_powersupported.md b/windows.media.devices/torchcontrol_powersupported.md
index dc5d5a708c..0d80e9a635 100644
--- a/windows.media.devices/torchcontrol_powersupported.md
+++ b/windows.media.devices/torchcontrol_powersupported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.TorchControl.PowerSupported
--api-type: winrt property
----
# Windows.Media.Devices.TorchControl.PowerSupported
## -description
Gets a value that specifics if the device allows the torch LED power settings to be changed.
## -property-value
**true** if the power settings can be modified; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.TorchControl.PowerSupported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.TorchControl.PowerSupported
+
+## -description
+Gets a value that specifics if the device allows the torch LED power settings to be changed.
+
+## -property-value
+**true** if the power settings can be modified; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/torchcontrol_supported.md b/windows.media.devices/torchcontrol_supported.md
index f0940680bb..a0fa06cd2c 100644
--- a/windows.media.devices/torchcontrol_supported.md
+++ b/windows.media.devices/torchcontrol_supported.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.TorchControl.Supported
--api-type: winrt property
----
# Windows.Media.Devices.TorchControl.Supported
## -description
Gets a value that specifies if the capture device supports the torch control.
## -property-value
**true** if the capture device supports the torch control; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.TorchControl.Supported
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.TorchControl.Supported
+
+## -description
+Gets a value that specifies if the capture device supports the torch control.
+
+## -property-value
+**true** if the capture device supports the torch control; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/videodevicecontroller_advancedphotocontrol.md b/windows.media.devices/videodevicecontroller_advancedphotocontrol.md
index b9b7d56772..f4eed320f0 100644
--- a/windows.media.devices/videodevicecontroller_advancedphotocontrol.md
+++ b/windows.media.devices/videodevicecontroller_advancedphotocontrol.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.VideoDeviceController.AdvancedPhotoControl
--api-type: winrt property
----
# Windows.Media.Devices.VideoDeviceController.AdvancedPhotoControl
## -description
Gets the advanced photo capture control for this video device.
## -property-value
The advanced photo capture control
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.VideoDeviceController.AdvancedPhotoControl
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.VideoDeviceController.AdvancedPhotoControl
+
+## -description
+Gets the advanced photo capture control for this video device.
+
+## -property-value
+The advanced photo capture control
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/videodevicecontroller_backlightcompensation.md b/windows.media.devices/videodevicecontroller_backlightcompensation.md
index fb6f4b9d83..9595666786 100644
--- a/windows.media.devices/videodevicecontroller_backlightcompensation.md
+++ b/windows.media.devices/videodevicecontroller_backlightcompensation.md
@@ -1,3 +1,26 @@
----
-api-id: P:Windows.Media.Devices.VideoDeviceController.BacklightCompensation
--api-type: winrt property
----
# Windows.Media.Devices.VideoDeviceController.BacklightCompensation
## -description
Gets a [MediaDeviceControl](mediadevicecontrol.md) object that can be used to get or set the whether back-light compensation is enabled on the camera.
## -property-value
A [MediaDeviceControl](mediadevicecontrol.md) object that provides methods to get and set the back-light compensation.
## -remarks
If the value is 1, back-light compensation is enabled. If the value is 0, back-light compensation is disabled.
For more information on getting or setting this value, see [MediaDeviceControl](mediadevicecontrol.md).
## -examples
## -see-also
[MediaDeviceControl](mediadevicecontrol.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.VideoDeviceController.BacklightCompensation
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.VideoDeviceController.BacklightCompensation
+
+## -description
+Gets a [MediaDeviceControl](mediadevicecontrol.md) object that can be used to get or set the whether back-light compensation is enabled on the camera.
+
+## -property-value
+A [MediaDeviceControl](mediadevicecontrol.md) object that provides methods to get and set the back-light compensation.
+
+## -remarks
+If the value is 1, back-light compensation is enabled. If the value is 0, back-light compensation is disabled.
+
+For more information on getting or setting this value, see [MediaDeviceControl](mediadevicecontrol.md).
+
+## -examples
+
+## -see-also
+[MediaDeviceControl](mediadevicecontrol.md)
\ No newline at end of file
diff --git a/windows.media.devices/videodevicecontroller_brightness.md b/windows.media.devices/videodevicecontroller_brightness.md
index 388195ceab..6f1fbfa25e 100644
--- a/windows.media.devices/videodevicecontroller_brightness.md
+++ b/windows.media.devices/videodevicecontroller_brightness.md
@@ -1,3 +1,26 @@
----
-api-id: P:Windows.Media.Devices.VideoDeviceController.Brightness
--api-type: winrt property
----
# Windows.Media.Devices.VideoDeviceController.Brightness
## -description
Gets a [MediaDeviceControl](mediadevicecontrol.md) object that can be used to get or set the brightness level on the camera.
## -property-value
A [MediaDeviceControl](mediadevicecontrol.md) object that provides methods to get and set the brightness.
## -remarks
For NTSC sources, brightness is expressed in IRE units multiplied by 100. For non-NTSC sources, the units are arbitrary, with 0 representing blanking and 10000 representing pure white.
For more information on getting or setting this value, see [MediaDeviceControl](mediadevicecontrol.md).
## -examples
## -see-also
[MediaDeviceControl](mediadevicecontrol.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.VideoDeviceController.Brightness
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.VideoDeviceController.Brightness
+
+## -description
+Gets a [MediaDeviceControl](mediadevicecontrol.md) object that can be used to get or set the brightness level on the camera.
+
+## -property-value
+A [MediaDeviceControl](mediadevicecontrol.md) object that provides methods to get and set the brightness.
+
+## -remarks
+For NTSC sources, brightness is expressed in IRE units multiplied by 100. For non-NTSC sources, the units are arbitrary, with 0 representing blanking and 10000 representing pure white.
+
+For more information on getting or setting this value, see [MediaDeviceControl](mediadevicecontrol.md).
+
+## -examples
+
+## -see-also
+[MediaDeviceControl](mediadevicecontrol.md)
\ No newline at end of file
diff --git a/windows.media.devices/videodevicecontroller_contrast.md b/windows.media.devices/videodevicecontroller_contrast.md
index ce0f6802a8..f763677151 100644
--- a/windows.media.devices/videodevicecontroller_contrast.md
+++ b/windows.media.devices/videodevicecontroller_contrast.md
@@ -1,3 +1,26 @@
----
-api-id: P:Windows.Media.Devices.VideoDeviceController.Contrast
--api-type: winrt property
----
# Windows.Media.Devices.VideoDeviceController.Contrast
## -description
Gets a [MediaDeviceControl](mediadevicecontrol.md) object that can be used to get or set the contrast level on the camera.
## -property-value
A [MediaDeviceControl](mediadevicecontrol.md) object that provides methods to get and set the contrast.
## -remarks
Contrast is specified as a gain factor multiplied by 100.
For more information on getting or setting this value, see [MediaDeviceControl](mediadevicecontrol.md).
## -examples
## -see-also
[MediaDeviceControl](mediadevicecontrol.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.VideoDeviceController.Contrast
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.VideoDeviceController.Contrast
+
+## -description
+Gets a [MediaDeviceControl](mediadevicecontrol.md) object that can be used to get or set the contrast level on the camera.
+
+## -property-value
+A [MediaDeviceControl](mediadevicecontrol.md) object that provides methods to get and set the contrast.
+
+## -remarks
+Contrast is specified as a gain factor multiplied by 100.
+
+For more information on getting or setting this value, see [MediaDeviceControl](mediadevicecontrol.md).
+
+## -examples
+
+## -see-also
+[MediaDeviceControl](mediadevicecontrol.md)
\ No newline at end of file
diff --git a/windows.media.devices/videodevicecontroller_desiredoptimization.md b/windows.media.devices/videodevicecontroller_desiredoptimization.md
index 06fd9718e4..10645088e4 100644
--- a/windows.media.devices/videodevicecontroller_desiredoptimization.md
+++ b/windows.media.devices/videodevicecontroller_desiredoptimization.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Devices.VideoDeviceController.DesiredOptimization
--api-type: winrt property
----
# Windows.Media.Devices.VideoDeviceController.DesiredOptimization
## -description
Gets or sets a value that indicates the optimizations the capture device should use to prioritize high quality picture, low latency, or low power consumption during video capture.
## -property-value
A value that indicates the optimizations the capture device should use.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Devices.VideoDeviceController.DesiredOptimization
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Devices.VideoDeviceController.DesiredOptimization
+
+## -description
+Gets or sets a value that indicates the optimizations the capture device should use to prioritize high quality picture, low latency, or low power consumption during video capture.
+
+## -property-value
+A value that indicates the optimizations the capture device should use.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.devices/videodevicecontroller_exposure.md b/windows.media.devices/videodevicecontroller_exposure.md
index 7f70f6d106..edf068c2b9 100644
--- a/windows.media.devices/videodevicecontroller_exposure.md
+++ b/windows.media.devices/videodevicecontroller_exposure.md
@@ -1,3 +1,26 @@
----
-api-id: P:Windows.Media.Devices.VideoDeviceController.Exposure
--api-type: winrt property
----
# Windows.Media.Devices.VideoDeviceController.Exposure
## -description
Gets a [MediaDeviceControl](mediadevicecontrol.md) object that can be used to get or set the camera's exposure time.
## -property-value
A [MediaDeviceControl](mediadevicecontrol.md) object that provides methods to get and set the exposure time.
## -remarks
Exposure is specified in log base 2 seconds. For values less than zero, the exposure time is 1/(2
Value | Description |
"AAC" | Advanced Audio Coding (AAC). The stream can contain either raw AAC data or AAC data in an Audio Data Transport Stream (ADTS) stream. |
"AC3" | Dolby Digital audio (AC-3). |
"AACADTS" | Advanced Audio Coding (AAC) audio in Audio Data Transport Stream (ADTS) format. |
"AACHDCP" | AAC in High-Bandwidth Digital Content Protection (HDCP) format. |
"AC3" | Dolby AC3 |
"AC3SPDIF" | Dolby AC-3 audio over Sony/Philips Digital Interface (S/PDIF). |
"AC3HDCP" | Dolby AC-3 in High-Bandwidth Digital Content Protection (HDCP) format. |
"ADTS" | Audio Data Transport Stream |
"ALAC" | Apple Lossless Audio Codec |
"AMRNB" | Adaptive Multi-Rate audio codec (AMR-NB) |
"AWRWB" | Adaptive Multi-Rate Wideband audio codec (AMR-WB) |
"DTS" | Digital Theater Systems (DTS) |
"EAC3" | Dolby Digital Plus audio (E-AC-3). |
"FLAC" | Free Lossless Audio Codec |
"Float" | Uncompressed 32-bit float PCM audio. |
"MP3" | MPEG Audio Layer-3 (MP3). |
"MPEG" | MPEG-1 audio payload. |
"OPUS" | Opus |
"PCM" | Uncompressed 16-bit PCM audio. |
"WMA8" | Windows Media Audio 8 codec, Windows Media Audio 9 codec, or Windows Media Audio 9.1 codec. |
"WMA9" | Windows Media Audio 9 Professional codec or Windows Media Audio 9.1 Professional codec. |
"Vorbis" | Vorbis codec |
> [!WARNING]
> The string values returned by the [MediaEncodingSubtypes](mediaencodingsubtypes.md) properties may not use the same letter casing as [AudioEncodingProperties.Subtype](audioencodingproperties_subtype.md), [VideoEncodingProperties.Subtype](videoencodingproperties_subtype.md), [ContainerEncodingProperties.Subtype](containerencodingproperties_subtype.md), and [ImageEncodingProperties.Subtype](imageencodingproperties_subtype.md). For this reason, if you compare the values, you should use a case-insensitive comparison or use hardcoded strings that match the casing returned by the encoding properties.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaProperties.AudioEncodingProperties.Subtype
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaProperties.AudioEncodingProperties.Subtype
+
+## -description
+Gets or sets the subtype of the format.
+
+## -property-value
+The subtype.
+
+## -remarks
+The value can be the string representation of a GUID in canonical form, or one of the predefined values listed in the following table.
+ Value | Description |
+ "AAC" | Advanced Audio Coding (AAC). The stream can contain either raw AAC data or AAC data in an Audio Data Transport Stream (ADTS) stream. |
+ "AC3" | Dolby Digital audio (AC-3). |
+ "AACADTS" | Advanced Audio Coding (AAC) audio in Audio Data Transport Stream (ADTS) format. |
+ "AACHDCP" | AAC in High-Bandwidth Digital Content Protection (HDCP) format. |
+ "AC3" | Dolby AC3 |
+ "AC3SPDIF" | Dolby AC-3 audio over Sony/Philips Digital Interface (S/PDIF). |
+ "AC3HDCP" | Dolby AC-3 in High-Bandwidth Digital Content Protection (HDCP) format. |
+ "ADTS" | Audio Data Transport Stream |
+ "ALAC" | Apple Lossless Audio Codec |
+ "AMRNB" | Adaptive Multi-Rate audio codec (AMR-NB) |
+ "AWRWB" | Adaptive Multi-Rate Wideband audio codec (AMR-WB) |
+ "DTS" | Digital Theater Systems (DTS) |
+ "EAC3" | Dolby Digital Plus audio (E-AC-3). |
+ "FLAC" | Free Lossless Audio Codec |
+ "Float" | Uncompressed 32-bit float PCM audio. |
+ "MP3" | MPEG Audio Layer-3 (MP3). |
+ "MPEG" | MPEG-1 audio payload. |
+ "OPUS" | Opus |
+ "PCM" | Uncompressed 16-bit PCM audio. |
+ "WMA8" | Windows Media Audio 8 codec, Windows Media Audio 9 codec, or Windows Media Audio 9.1 codec. |
+ "WMA9" | Windows Media Audio 9 Professional codec or Windows Media Audio 9.1 Professional codec. |
+ "Vorbis" | Vorbis codec |
+
+
+> [!WARNING]
+> The string values returned by the [MediaEncodingSubtypes](mediaencodingsubtypes.md) properties may not use the same letter casing as [AudioEncodingProperties.Subtype](audioencodingproperties_subtype.md), [VideoEncodingProperties.Subtype](videoencodingproperties_subtype.md), [ContainerEncodingProperties.Subtype](containerencodingproperties_subtype.md), and [ImageEncodingProperties.Subtype](imageencodingproperties_subtype.md). For this reason, if you compare the values, you should use a case-insensitive comparison or use hardcoded strings that match the casing returned by the encoding properties.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.mediaproperties/audioencodingproperties_type.md b/windows.media.mediaproperties/audioencodingproperties_type.md
index 9123995005..d74c597f1f 100644
--- a/windows.media.mediaproperties/audioencodingproperties_type.md
+++ b/windows.media.mediaproperties/audioencodingproperties_type.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.MediaProperties.AudioEncodingProperties.Type
--api-type: winrt property
----
# Windows.Media.MediaProperties.AudioEncodingProperties.Type
## -description
Gets the format type.
## -property-value
The format type. For audio streams, the format type is "Audio".
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaProperties.AudioEncodingProperties.Type
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaProperties.AudioEncodingProperties.Type
+
+## -description
+Gets the format type.
+
+## -property-value
+The format type. For audio streams, the format type is "Audio".
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.mediaproperties/containerencodingproperties_containerencodingproperties_1221375020.md b/windows.media.mediaproperties/containerencodingproperties_containerencodingproperties_1221375020.md
index 60e44da48e..dcd41a92f1 100644
--- a/windows.media.mediaproperties/containerencodingproperties_containerencodingproperties_1221375020.md
+++ b/windows.media.mediaproperties/containerencodingproperties_containerencodingproperties_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.MediaProperties.ContainerEncodingProperties.#ctor
--api-type: winrt method
----
# Windows.Media.MediaProperties.ContainerEncodingProperties.ContainerEncodingProperties
## -description
Creates a new instance of the [ContainerEncodingProperties](containerencodingproperties.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaProperties.ContainerEncodingProperties.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaProperties.ContainerEncodingProperties.ContainerEncodingProperties
+
+## -description
+Creates a new instance of the [ContainerEncodingProperties](containerencodingproperties.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.mediaproperties/containerencodingproperties_properties.md b/windows.media.mediaproperties/containerencodingproperties_properties.md
index e4bf858b1a..8eeb18dcfc 100644
--- a/windows.media.mediaproperties/containerencodingproperties_properties.md
+++ b/windows.media.mediaproperties/containerencodingproperties_properties.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.MediaProperties.ContainerEncodingProperties.Properties
--api-type: winrt property
----
# Windows.Media.MediaProperties.ContainerEncodingProperties.Properties
## -description
Gets additional format properties for the media container.
## -property-value
A property set that contains format properties.
## -remarks
For information on working with a property set collection, see [PropertySet](../windows.foundation.collections/propertyset.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaProperties.ContainerEncodingProperties.Properties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaProperties.ContainerEncodingProperties.Properties
+
+## -description
+Gets additional format properties for the media container.
+
+## -property-value
+A property set that contains format properties.
+
+## -remarks
+For information on working with a property set collection, see [PropertySet](../windows.foundation.collections/propertyset.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.mediaproperties/containerencodingproperties_subtype.md b/windows.media.mediaproperties/containerencodingproperties_subtype.md
index 7c34d41431..efa2d3a990 100644
--- a/windows.media.mediaproperties/containerencodingproperties_subtype.md
+++ b/windows.media.mediaproperties/containerencodingproperties_subtype.md
@@ -1,3 +1,35 @@
----
-api-id: P:Windows.Media.MediaProperties.ContainerEncodingProperties.Subtype
--api-type: winrt property
----
# Windows.Media.MediaProperties.ContainerEncodingProperties.Subtype
## -description
Gets or sets the subtype of the media container.
## -property-value
The subtype.
## -remarks
The value can be the string representation of a GUID in canonical form, or one of the predefined values listed in the following table.
Name | Type | Description |
Windows.Media.Protection.VideoFrameAccessCertificate | UINT8 Array | Application certificate for accessing frames in frame server mode. |
Windows.Media.Protection.MediaProtectionSystemId | GUID | Protection System ID |
Windows.Media.Protection.MediaProtectionSystemContext | UINT8 Array | Data associated with protection system for the current content. |
Windows.Media.Protection.MediaProtectionSystemIdMapping | IPropertySet | Returns a mapping of the protection system id to the string for activating the trusted input object. The string for the protection system id must be in the format of a GUID (include {}) in upper case. This maps to a class name in the content protection system. |
Windows.Media.Protection.MediaProtectionContainerGuid | GUID | Specifies the Digital Rights Management (DRM) scheme. |
## -examples
```javascript
var cpsystems = new Windows.Foundation.Collections.PropertySet();
cpsystems["{1891D602-6F0A-40F7-90A1-3C24564F6D77}"] = "TestDRMInstall.Objects.AsfTrustedInput";
contentProtectionManager.properties["Windows.Media.Protection.MediaProtectionSystemIdMapping"] = cpsystems;
```
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Protection.MediaProtectionManager.Properties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Protection.MediaProtectionManager.Properties
+
+## -description
+Gets a PropertySet object containing any properties attached to the protection manager.
+
+## -property-value
+The PropertySet object that contains the properties for this protection manager.
+
+## -remarks
+The following properties are defined:
+ Name | Type | Description |
+ Windows.Media.Protection.VideoFrameAccessCertificate | UINT8 Array | Application certificate for accessing frames in frame server mode. |
+ Windows.Media.Protection.MediaProtectionSystemId | GUID | Protection System ID |
+ Windows.Media.Protection.MediaProtectionSystemContext | UINT8 Array | Data associated with protection system for the current content. |
+ Windows.Media.Protection.MediaProtectionSystemIdMapping | IPropertySet | Returns a mapping of the protection system id to the string for activating the trusted input object. The string for the protection system id must be in the format of a GUID (include {}) in upper case. This maps to a class name in the content protection system. |
+ Windows.Media.Protection.MediaProtectionContainerGuid | GUID | Specifies the Digital Rights Management (DRM) scheme. |
+
+
+## -examples
+```javascript
+var cpsystems = new Windows.Foundation.Collections.PropertySet();
+
+cpsystems["{1891D602-6F0A-40F7-90A1-3C24564F6D77}"] = "TestDRMInstall.Objects.AsfTrustedInput";
+
+contentProtectionManager.properties["Windows.Media.Protection.MediaProtectionSystemIdMapping"] = cpsystems;
+
+```
+
+
+
+## -see-also
diff --git a/windows.media.protection/mediaprotectionmanager_rebootneeded.md b/windows.media.protection/mediaprotectionmanager_rebootneeded.md
index f994f31a1e..f063aeea3c 100644
--- a/windows.media.protection/mediaprotectionmanager_rebootneeded.md
+++ b/windows.media.protection/mediaprotectionmanager_rebootneeded.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Protection.MediaProtectionManager.RebootNeeded
--api-type: winrt event
----
# Windows.Media.Protection.MediaProtectionManager.RebootNeeded
## -description
Fires when a reboot is needed after the component is renewed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Protection.MediaProtectionManager.RebootNeeded
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Protection.MediaProtectionManager.RebootNeeded
+
+## -description
+Fires when a reboot is needed after the component is renewed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.protection/mediaprotectionmanager_servicerequested.md b/windows.media.protection/mediaprotectionmanager_servicerequested.md
index d860dce8cd..e4533b97e0 100644
--- a/windows.media.protection/mediaprotectionmanager_servicerequested.md
+++ b/windows.media.protection/mediaprotectionmanager_servicerequested.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Protection.MediaProtectionManager.ServiceRequested
--api-type: winrt event
----
# Windows.Media.Protection.MediaProtectionManager.ServiceRequested
## -description
Fires when a service is requested.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Protection.MediaProtectionManager.ServiceRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Protection.MediaProtectionManager.ServiceRequested
+
+## -description
+Fires when a service is requested.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.protection/mediaprotectionpmpserver.md b/windows.media.protection/mediaprotectionpmpserver.md
index f0905b8596..67e6f710ed 100644
--- a/windows.media.protection/mediaprotectionpmpserver.md
+++ b/windows.media.protection/mediaprotectionpmpserver.md
@@ -1,3 +1,19 @@
----
-api-id: T:Windows.Media.Protection.MediaProtectionPMPServer
--api-type: winrt class
----
# Windows.Media.Protection.MediaProtectionPMPServer
## -description
Represents a Protected Media Path (PMP) server to enable playback of protected content using digital rights management (DRM).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Protection.MediaProtectionPMPServer
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Protection.MediaProtectionPMPServer
+
+## -description
+Represents a Protected Media Path (PMP) server to enable playback of protected content using digital rights management (DRM).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.protection/mediaprotectionpmpserver_mediaprotectionpmpserver_1996835575.md b/windows.media.protection/mediaprotectionpmpserver_mediaprotectionpmpserver_1996835575.md
index 33748b2490..5e89908369 100644
--- a/windows.media.protection/mediaprotectionpmpserver_mediaprotectionpmpserver_1996835575.md
+++ b/windows.media.protection/mediaprotectionpmpserver_mediaprotectionpmpserver_1996835575.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.Protection.MediaProtectionPMPServer.#ctor(Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.Protection.MediaProtectionPMPServer.MediaProtectionPMPServer
## -description
Initializes a new instance of the [MediaProtectionPMPServer](mediaprotectionpmpserver.md) class with the specified properties.
## -parameters
### -param pProperties
The set of properties used to initialize the server.
## -remarks
[MediaProtectionPMPServer](mediaprotectionpmpserver.md) supports the following properties:
Voice | Gender | Windows 8 | Windows 8.1 | Name | Display name |
English US | Female | Y | Y | Zira | Microsoft Zira (en-US, female). |
English US | Male | Y | Y | David | Microsoft David (en-US, male) |
English GB | Female | Y | Y | Hazel | Microsoft Hazel (en-GB, female) |
French FR | Female | Y | Y | Hortense | Microsoft Hortense (fr-FR , female) |
German DE | Female | Y | Y | Hedda | Microsoft Hedda (de-DE, female) |
Spanish ES | Female | Y | Y | Helena | Microsoft Helena (es-ES, female) |
Chinese PRC | Female | Y | Y | Huihui | Microsoft Huihui (zh-CN, female) |
Chinese TW | Female | Y | Y | Hanhan | Microsoft Hanhan (zh-TW, female) |
Japanese JA | Female | Y | Y | Haruka | Microsoft Haruka (ja-JP, female) |
Korean KR | Female | Y | Y | Heami | Microsoft Heami (ko-KR, female) |
Spanish MX | Female | N | Y | Sabina | Microsoft Sabina (es-MX, female) |
Italian IT | Female | N | Y | Elsa | Microsoft Elsa (it-IT, female) |
English IN | Female | N | Y | Heera | Microsoft Heera (en-IN, female) |
Russian RU | Female | N | Y | Irina | Microsoft Irina (ru-RU, female) |
Chinese HK | Female | N | Y | Tracy | Microsoft Tracy (zh-HK, female) |
Polish PL | Female | N | Y | Paulina | Microsoft Paulina (pl-PL, female) |
Portuguese BR | Female | N | Y | Maria | Microsoft Maria (pt-BR, female) |
## -examples
## -see-also
[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SpeechSynthesis.SpeechSynthesizer.Voice
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SpeechSynthesis.SpeechSynthesizer.Voice
+
+## -description
+Gets or sets the speech synthesis engine (voice).
+
+## -property-value
+A speech synthesis engine (voice). The default value is the system voice.
+
+## -remarks
+Only Microsoft-signed voices can be used by [SpeechSynthesizer](speechsynthesizer.md). Here is a list of Microsoft-signed voices provided with Windows.
+
+
+ Voice | Gender | Windows 8 | Windows 8.1 | Name | Display name |
+ English US | Female | Y | Y | Zira | Microsoft Zira (en-US, female). |
+ English US | Male | Y | Y | David | Microsoft David (en-US, male) |
+ English GB | Female | Y | Y | Hazel | Microsoft Hazel (en-GB, female) |
+ French FR | Female | Y | Y | Hortense | Microsoft Hortense (fr-FR , female) |
+ German DE | Female | Y | Y | Hedda | Microsoft Hedda (de-DE, female) |
+ Spanish ES | Female | Y | Y | Helena | Microsoft Helena (es-ES, female) |
+ Chinese PRC | Female | Y | Y | Huihui | Microsoft Huihui (zh-CN, female) |
+ Chinese TW | Female | Y | Y | Hanhan | Microsoft Hanhan (zh-TW, female) |
+ Japanese JA | Female | Y | Y | Haruka | Microsoft Haruka (ja-JP, female) |
+ Korean KR | Female | Y | Y | Heami | Microsoft Heami (ko-KR, female) |
+ Spanish MX | Female | N | Y | Sabina | Microsoft Sabina (es-MX, female) |
+ Italian IT | Female | N | Y | Elsa | Microsoft Elsa (it-IT, female) |
+ English IN | Female | N | Y | Heera | Microsoft Heera (en-IN, female) |
+ Russian RU | Female | N | Y | Irina | Microsoft Irina (ru-RU, female) |
+ Chinese HK | Female | N | Y | Tracy | Microsoft Tracy (zh-HK, female) |
+ Polish PL | Female | N | Y | Paulina | Microsoft Paulina (pl-PL, female) |
+ Portuguese BR | Female | N | Y | Maria | Microsoft Maria (pt-BR, female) |
+
+
+## -examples
+
+## -see-also
+[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
diff --git a/windows.media.speechsynthesis/voiceinformation_description.md b/windows.media.speechsynthesis/voiceinformation_description.md
index 1e57f11533..aa605a691e 100644
--- a/windows.media.speechsynthesis/voiceinformation_description.md
+++ b/windows.media.speechsynthesis/voiceinformation_description.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.SpeechSynthesis.VoiceInformation.Description
--api-type: winrt property
----
# Windows.Media.SpeechSynthesis.VoiceInformation.Description
## -description
Gets the description of the speech synthesis engine (voice).
## -property-value
The description, based on a combination of [DisplayName](voiceinformation_displayname.md) and [Language](voiceinformation_language.md). For example, Microsoft David - English (United States).
## -remarks
## -examples
## -see-also
[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SpeechSynthesis.VoiceInformation.Description
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SpeechSynthesis.VoiceInformation.Description
+
+## -description
+Gets the description of the speech synthesis engine (voice).
+
+## -property-value
+The description, based on a combination of [DisplayName](voiceinformation_displayname.md) and [Language](voiceinformation_language.md). For example, Microsoft David - English (United States).
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
diff --git a/windows.media.speechsynthesis/voiceinformation_displayname.md b/windows.media.speechsynthesis/voiceinformation_displayname.md
index 618404653e..6b8015f6f2 100644
--- a/windows.media.speechsynthesis/voiceinformation_displayname.md
+++ b/windows.media.speechsynthesis/voiceinformation_displayname.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.SpeechSynthesis.VoiceInformation.DisplayName
--api-type: winrt property
----
# Windows.Media.SpeechSynthesis.VoiceInformation.DisplayName
## -description
Gets the display name associated with the speech synthesis engine (voice).
## -property-value
The display name of the voice.
## -remarks
## -examples
## -see-also
[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SpeechSynthesis.VoiceInformation.DisplayName
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SpeechSynthesis.VoiceInformation.DisplayName
+
+## -description
+Gets the display name associated with the speech synthesis engine (voice).
+
+## -property-value
+The display name of the voice.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
diff --git a/windows.media.speechsynthesis/voiceinformation_gender.md b/windows.media.speechsynthesis/voiceinformation_gender.md
index 16a5ed84c1..402acd795e 100644
--- a/windows.media.speechsynthesis/voiceinformation_gender.md
+++ b/windows.media.speechsynthesis/voiceinformation_gender.md
@@ -1,3 +1,45 @@
----
-api-id: P:Windows.Media.SpeechSynthesis.VoiceInformation.Gender
--api-type: winrt property
----
# Windows.Media.SpeechSynthesis.VoiceInformation.Gender
## -description
Gets the gender setting of the speech synthesis engine (voice).
## -property-value
The gender of the voice.
## -remarks
Here is a list of Microsoft-signed voices provided with Windows.
Voice | Gender | Windows 8 | Windows 8.1 | Name | Display name |
English US | Female | Y | Y | Zira | Microsoft Zira (en-US, female). |
English US | Male | Y | Y | David | Microsoft David (en-US, male) |
English GB | Female | Y | Y | Hazel | Microsoft Hazel (en-GB, female) |
French FR | Female | Y | Y | Hortense | Microsoft Hortense (fr-FR , female) |
German DE | Female | Y | Y | Hedda | Microsoft Hedda (de-DE, female) |
Spanish ES | Female | Y | Y | Helena | Microsoft Helena (es-ES, female) |
Chinese PRC | Female | Y | Y | Huihui | Microsoft Huihui (zh-CN, female) |
Chinese TW | Female | Y | Y | Hanhan | Microsoft Hanhan (zh-TW, female) |
Japanese JA | Female | Y | Y | Haruka | Microsoft Haruka (ja-JP, female) |
Korean KR | Female | Y | Y | Heami | Microsoft Heami (ko-KR, female) |
Spanish MX | Female | N | Y | Sabina | Microsoft Sabina (es-MX, female) |
Italian IT | Female | N | Y | Elsa | Microsoft Elsa (it-IT, female) |
English IN | Female | N | Y | Heera | Microsoft Heera (en-IN, female) |
Russian RU | Female | N | Y | Irina | Microsoft Irina (ru-RU, female) |
Chinese HK | Female | N | Y | Tracy | Microsoft Tracy (zh-HK, female) |
Polish PL | Female | N | Y | Paulina | Microsoft Paulina (pl-PL, female) |
Portuguese BR | Female | N | Y | Maria | Microsoft Maria (pt-BR, female) |
## -examples
## -see-also
[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SpeechSynthesis.VoiceInformation.Gender
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SpeechSynthesis.VoiceInformation.Gender
+
+## -description
+Gets the gender setting of the speech synthesis engine (voice).
+
+## -property-value
+The gender of the voice.
+
+## -remarks
+Here is a list of Microsoft-signed voices provided with Windows.
+
+
+ Voice | Gender | Windows 8 | Windows 8.1 | Name | Display name |
+ English US | Female | Y | Y | Zira | Microsoft Zira (en-US, female). |
+ English US | Male | Y | Y | David | Microsoft David (en-US, male) |
+ English GB | Female | Y | Y | Hazel | Microsoft Hazel (en-GB, female) |
+ French FR | Female | Y | Y | Hortense | Microsoft Hortense (fr-FR , female) |
+ German DE | Female | Y | Y | Hedda | Microsoft Hedda (de-DE, female) |
+ Spanish ES | Female | Y | Y | Helena | Microsoft Helena (es-ES, female) |
+ Chinese PRC | Female | Y | Y | Huihui | Microsoft Huihui (zh-CN, female) |
+ Chinese TW | Female | Y | Y | Hanhan | Microsoft Hanhan (zh-TW, female) |
+ Japanese JA | Female | Y | Y | Haruka | Microsoft Haruka (ja-JP, female) |
+ Korean KR | Female | Y | Y | Heami | Microsoft Heami (ko-KR, female) |
+ Spanish MX | Female | N | Y | Sabina | Microsoft Sabina (es-MX, female) |
+ Italian IT | Female | N | Y | Elsa | Microsoft Elsa (it-IT, female) |
+ English IN | Female | N | Y | Heera | Microsoft Heera (en-IN, female) |
+ Russian RU | Female | N | Y | Irina | Microsoft Irina (ru-RU, female) |
+ Chinese HK | Female | N | Y | Tracy | Microsoft Tracy (zh-HK, female) |
+ Polish PL | Female | N | Y | Paulina | Microsoft Paulina (pl-PL, female) |
+ Portuguese BR | Female | N | Y | Maria | Microsoft Maria (pt-BR, female) |
+
+
+## -examples
+
+## -see-also
+[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
diff --git a/windows.media.speechsynthesis/voiceinformation_id.md b/windows.media.speechsynthesis/voiceinformation_id.md
index 789c0443b5..fcf693b574 100644
--- a/windows.media.speechsynthesis/voiceinformation_id.md
+++ b/windows.media.speechsynthesis/voiceinformation_id.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.SpeechSynthesis.VoiceInformation.Id
--api-type: winrt property
----
# Windows.Media.SpeechSynthesis.VoiceInformation.Id
## -description
Gets the unique ID of the speech synthesis engine (voice).
## -property-value
The unique ID.
## -remarks
## -examples
## -see-also
[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SpeechSynthesis.VoiceInformation.Id
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SpeechSynthesis.VoiceInformation.Id
+
+## -description
+Gets the unique ID of the speech synthesis engine (voice).
+
+## -property-value
+The unique ID.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
diff --git a/windows.media.speechsynthesis/voiceinformation_language.md b/windows.media.speechsynthesis/voiceinformation_language.md
index 7d762d9340..0880fe21ce 100644
--- a/windows.media.speechsynthesis/voiceinformation_language.md
+++ b/windows.media.speechsynthesis/voiceinformation_language.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.SpeechSynthesis.VoiceInformation.Language
--api-type: winrt property
----
# Windows.Media.SpeechSynthesis.VoiceInformation.Language
## -description
Gets the normalized [BCP-47 language tag](http://go.microsoft.com/fwlink/p/?linkid=227302) of the speech synthesis engine (voice).
## -property-value
The normalized [BCP-47 language tag](http://go.microsoft.com/fwlink/p/?linkid=227302).
## -remarks
## -examples
## -see-also
[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SpeechSynthesis.VoiceInformation.Language
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SpeechSynthesis.VoiceInformation.Language
+
+## -description
+Gets the normalized [BCP-47 language tag](http://go.microsoft.com/fwlink/p/?linkid=227302) of the speech synthesis engine (voice).
+
+## -property-value
+The normalized [BCP-47 language tag](http://go.microsoft.com/fwlink/p/?linkid=227302).
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Speech interactions](http://msdn.microsoft.com/library/646db3ce-fa81-4727-8c21-936c81079439), [Speech design guidelines](http://msdn.microsoft.com/library/4a63a8c4-4182-4e36-ba12-4c343a56fca9), [Speech recognition and speech synthesis sample](http://go.microsoft.com/fwlink/p/?LinkID=619897)
\ No newline at end of file
diff --git a/windows.media.streaming.adaptive/adaptivemediasource.md b/windows.media.streaming.adaptive/adaptivemediasource.md
index a8bb20c1b8..9814aa5f64 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource
--api-type: winrt class
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource
## -description
Represents the source of adaptive streaming content.
## -remarks
Call one of the [CreateAsync](adaptivemediasource_createasync.md) methods to create a [AdaptiveMediaSource](adaptivemediasource.md) object with a specific adaptive streaming manifest source.
For how-to guidance for using adaptive streaming in your app, see [Adaptive streaming](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/adaptive-streaming).
## -examples
## -see-also
[IMediaSource](../windows.media.core/imediasource.md), [Adaptive streaming](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/adaptive-streaming)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource
+
+## -description
+Represents the source of adaptive streaming content.
+
+## -remarks
+Call one of the [CreateAsync](adaptivemediasource_createasync.md) methods to create a [AdaptiveMediaSource](adaptivemediasource.md) object with a specific adaptive streaming manifest source.
+
+For how-to guidance for using adaptive streaming in your app, see [Adaptive streaming](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/adaptive-streaming).
+
+## -examples
+
+## -see-also
+[IMediaSource](../windows.media.core/imediasource.md), [Adaptive streaming](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/adaptive-streaming)
\ No newline at end of file
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_advancedsettings.md b/windows.media.streaming.adaptive/adaptivemediasource_advancedsettings.md
index 3b0955a050..09cb1f31b5 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_advancedsettings.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_advancedsettings.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AdvancedSettings
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AdvancedSettings
## -description
Gets the advanced settings for the adaptive media source.
## -property-value
The advanced settings for the adaptive media source.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AdvancedSettings
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AdvancedSettings
+
+## -description
+Gets the advanced settings for the adaptive media source.
+
+## -property-value
+The advanced settings for the adaptive media source.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_audioonlyplayback.md b/windows.media.streaming.adaptive/adaptivemediasource_audioonlyplayback.md
index dfcdf01331..7b14f5e37a 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_audioonlyplayback.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_audioonlyplayback.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AudioOnlyPlayback
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AudioOnlyPlayback
## -description
Gets a value indicating if the content streamed by the media source contains only audio.
## -property-value
True if the content only contains audio; otherwise, false.
## -remarks
Check the value of this property to determine if the media content is audio-only and adjust your UI accordingly.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AudioOnlyPlayback
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AudioOnlyPlayback
+
+## -description
+Gets a value indicating if the content streamed by the media source contains only audio.
+
+## -property-value
+True if the content only contains audio; otherwise, false.
+
+## -remarks
+Check the value of this property to determine if the media content is audio-only and adjust your UI accordingly.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_availablebitrates.md b/windows.media.streaming.adaptive/adaptivemediasource_availablebitrates.md
index 5c61577fa7..11b4c235b8 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_availablebitrates.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_availablebitrates.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AvailableBitrates
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AvailableBitrates
## -description
Gets the available adaptive bit rates of the adaptive streaming manifest that is the source of the adaptive streaming object.
## -property-value
The list of available adaptive bit rates of the adaptive streaming manifest.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AvailableBitrates
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.AvailableBitrates
+
+## -description
+Gets the available adaptive bit rates of the adaptive streaming manifest that is the source of the adaptive streaming object.
+
+## -property-value
+The list of available adaptive bit rates of the adaptive streaming manifest.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_createfromstreamasync_337009516.md b/windows.media.streaming.adaptive/adaptivemediasource_createfromstreamasync_337009516.md
index 60d5120534..4fd594d1c8 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_createfromstreamasync_337009516.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_createfromstreamasync_337009516.md
@@ -1,3 +1,36 @@
----
-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromStreamAsync(Windows.Storage.Streams.IInputStream,Windows.Foundation.Uri,System.String,Windows.Web.Http.HttpClient)
--api-type: winrt method
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromStreamAsync
## -description
Asynchronously creates a [AdaptiveMediaSource](adaptivemediasource.md) object from the provided input stream.
## -parameters
### -param stream
The input stream from which the [AdaptiveMediaSource](adaptivemediasource.md) is created.
### -param uri
The Uniform Resource Identifier (URI) of the source. This is used by the [AdaptiveMediaSource](adaptivemediasource.md) to resolve relative URIs.
### -param contentType
A string that identifies the MIME content type of the source. This can be an Http Live Streaming (HLS) or a Dynamic Adaptive Streaming over HTTP (DASH) content type.
### -param httpClient
The [HttpClient](../windows.web.http/httpclient.md) instance that the [AdaptiveMediaSource](adaptivemediasource.md) should use for downloading resources. This allows you to specify custom HTTP headers for the requests.
## -returns
Returns an [AdaptiveMediaSourceCreationResult](adaptivemediasourcecreationresult.md) upon successful completion.
## -remarks
## -examples
## -see-also
[CreateFromStreamAsync(IInputStream, Uri, String)](adaptivemediasource_createfromstreamasync_930585492.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromStreamAsync(Windows.Storage.Streams.IInputStream,Windows.Foundation.Uri,System.String,Windows.Web.Http.HttpClient)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromStreamAsync
+
+## -description
+Asynchronously creates a [AdaptiveMediaSource](adaptivemediasource.md) object from the provided input stream.
+
+## -parameters
+### -param stream
+The input stream from which the [AdaptiveMediaSource](adaptivemediasource.md) is created.
+
+### -param uri
+The Uniform Resource Identifier (URI) of the source. This is used by the [AdaptiveMediaSource](adaptivemediasource.md) to resolve relative URIs.
+
+### -param contentType
+A string that identifies the MIME content type of the source. This can be an Http Live Streaming (HLS) or a Dynamic Adaptive Streaming over HTTP (DASH) content type.
+
+### -param httpClient
+The [HttpClient](../windows.web.http/httpclient.md) instance that the [AdaptiveMediaSource](adaptivemediasource.md) should use for downloading resources. This allows you to specify custom HTTP headers for the requests.
+
+## -returns
+Returns an [AdaptiveMediaSourceCreationResult](adaptivemediasourcecreationresult.md) upon successful completion.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateFromStreamAsync(IInputStream, Uri, String)](adaptivemediasource_createfromstreamasync_930585492.md)
\ No newline at end of file
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_createfromstreamasync_930585492.md b/windows.media.streaming.adaptive/adaptivemediasource_createfromstreamasync_930585492.md
index e36f6ab7d1..08eefc43e6 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_createfromstreamasync_930585492.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_createfromstreamasync_930585492.md
@@ -1,3 +1,33 @@
----
-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromStreamAsync(Windows.Storage.Streams.IInputStream,Windows.Foundation.Uri,System.String)
--api-type: winrt method
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromStreamAsync
## -description
Asynchronously creates a [AdaptiveMediaSource](adaptivemediasource.md) object from the provided input stream.
## -parameters
### -param stream
The input stream from which the [AdaptiveMediaSource](adaptivemediasource.md) is created.
### -param uri
The Uniform Resource Identifier (URI) of the source. This is used by the [AdaptiveMediaSource](adaptivemediasource.md) to resolve relative URIs.
### -param contentType
A string that identifies the MIME content type of the source. This can be an Http Live Streaming (HLS) or a Dynamic Adaptive Streaming over HTTP (DASH) content type.
## -returns
Returns an [AdaptiveMediaSourceCreationResult](adaptivemediasourcecreationresult.md) upon successful completion.
## -remarks
## -examples
## -see-also
[CreateFromStreamAsync(IInputStream, Uri, String, HttpClient)](adaptivemediasource_createfromstreamasync_337009516.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromStreamAsync(Windows.Storage.Streams.IInputStream,Windows.Foundation.Uri,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromStreamAsync
+
+## -description
+Asynchronously creates a [AdaptiveMediaSource](adaptivemediasource.md) object from the provided input stream.
+
+## -parameters
+### -param stream
+The input stream from which the [AdaptiveMediaSource](adaptivemediasource.md) is created.
+
+### -param uri
+The Uniform Resource Identifier (URI) of the source. This is used by the [AdaptiveMediaSource](adaptivemediasource.md) to resolve relative URIs.
+
+### -param contentType
+A string that identifies the MIME content type of the source. This can be an Http Live Streaming (HLS) or a Dynamic Adaptive Streaming over HTTP (DASH) content type.
+
+## -returns
+Returns an [AdaptiveMediaSourceCreationResult](adaptivemediasourcecreationresult.md) upon successful completion.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateFromStreamAsync(IInputStream, Uri, String, HttpClient)](adaptivemediasource_createfromstreamasync_337009516.md)
\ No newline at end of file
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_createfromuriasync_1183200160.md b/windows.media.streaming.adaptive/adaptivemediasource_createfromuriasync_1183200160.md
index 2e63e3b2d5..108312937b 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_createfromuriasync_1183200160.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_createfromuriasync_1183200160.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromUriAsync(Windows.Foundation.Uri)
--api-type: winrt method
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromUriAsync
## -description
Asynchronously creates a [AdaptiveMediaSource](adaptivemediasource.md) object from the Uniform Resource Identifier (URI) of the source.
## -parameters
### -param uri
T he Uniform Resource Identifier (URI) of the source.
## -returns
Returns an [AdaptiveMediaSourceCreationResult](adaptivemediasourcecreationresult.md) upon successful completion.
## -remarks
## -examples
## -see-also
[CreateFromUriAsync(Uri, HttpClient)](adaptivemediasource_createfromuriasync_832683104.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromUriAsync(Windows.Foundation.Uri)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromUriAsync
+
+## -description
+Asynchronously creates a [AdaptiveMediaSource](adaptivemediasource.md) object from the Uniform Resource Identifier (URI) of the source.
+
+## -parameters
+### -param uri
+T he Uniform Resource Identifier (URI) of the source.
+
+## -returns
+Returns an [AdaptiveMediaSourceCreationResult](adaptivemediasourcecreationresult.md) upon successful completion.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateFromUriAsync(Uri, HttpClient)](adaptivemediasource_createfromuriasync_832683104.md)
\ No newline at end of file
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_createfromuriasync_832683104.md b/windows.media.streaming.adaptive/adaptivemediasource_createfromuriasync_832683104.md
index ff515fb3eb..53c1ab9f53 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_createfromuriasync_832683104.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_createfromuriasync_832683104.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromUriAsync(Windows.Foundation.Uri,Windows.Web.Http.HttpClient)
--api-type: winrt method
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromUriAsync
## -description
Asynchronously creates a [AdaptiveMediaSource](adaptivemediasource.md) object from the Uniform Resource Identifier (URI) of the source.
## -parameters
### -param uri
T he Uniform Resource Identifier (URI) of the source.
### -param httpClient
The [HttpClient](../windows.web.http/httpclient.md) instance that the [AdaptiveMediaSource](adaptivemediasource.md) should use for downloading resources. This allows you to specify custom HTTP headers for the requests.
## -returns
Returns an [AdaptiveMediaSourceCreationResult](adaptivemediasourcecreationresult.md) upon successful completion.
## -remarks
## -examples
## -see-also
[CreateFromUriAsync(Uri)](adaptivemediasource_createfromuriasync_1183200160.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromUriAsync(Windows.Foundation.Uri,Windows.Web.Http.HttpClient)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CreateFromUriAsync
+
+## -description
+Asynchronously creates a [AdaptiveMediaSource](adaptivemediasource.md) object from the Uniform Resource Identifier (URI) of the source.
+
+## -parameters
+### -param uri
+T he Uniform Resource Identifier (URI) of the source.
+
+### -param httpClient
+The [HttpClient](../windows.web.http/httpclient.md) instance that the [AdaptiveMediaSource](adaptivemediasource.md) should use for downloading resources. This allows you to specify custom HTTP headers for the requests.
+
+## -returns
+Returns an [AdaptiveMediaSourceCreationResult](adaptivemediasourcecreationresult.md) upon successful completion.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateFromUriAsync(Uri)](adaptivemediasource_createfromuriasync_1183200160.md)
\ No newline at end of file
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_currentdownloadbitrate.md b/windows.media.streaming.adaptive/adaptivemediasource_currentdownloadbitrate.md
index 37f330b3fb..38ab16f2ad 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_currentdownloadbitrate.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_currentdownloadbitrate.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CurrentDownloadBitrate
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CurrentDownloadBitrate
## -description
Gets a value indicating the current download bitrate for the media source.
## -property-value
The current download bitrate for the media source.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CurrentDownloadBitrate
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CurrentDownloadBitrate
+
+## -description
+Gets a value indicating the current download bitrate for the media source.
+
+## -property-value
+The current download bitrate for the media source.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_currentplaybackbitrate.md b/windows.media.streaming.adaptive/adaptivemediasource_currentplaybackbitrate.md
index 320e0c9793..b50e20c0e9 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_currentplaybackbitrate.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_currentplaybackbitrate.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CurrentPlaybackBitrate
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CurrentPlaybackBitrate
## -description
Gets a value indicating the current playback bitrate for the media source.
## -property-value
The current playback bitrate for the media source.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CurrentPlaybackBitrate
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.CurrentPlaybackBitrate
+
+## -description
+Gets a value indicating the current playback bitrate for the media source.
+
+## -property-value
+The current playback bitrate for the media source.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_desiredliveoffset.md b/windows.media.streaming.adaptive/adaptivemediasource_desiredliveoffset.md
index 266b97012b..8ccd84aa2b 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_desiredliveoffset.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_desiredliveoffset.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredLiveOffset
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredLiveOffset
## -description
Gets or sets the desired starting offset for the live playback of the media source.
## -property-value
The desired starting offset for the live playback of the streaming media.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredLiveOffset
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredLiveOffset
+
+## -description
+Gets or sets the desired starting offset for the live playback of the media source.
+
+## -property-value
+The desired starting offset for the live playback of the streaming media.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_desiredmaxbitrate.md b/windows.media.streaming.adaptive/adaptivemediasource_desiredmaxbitrate.md
index adab8d1cc4..bda658e7d0 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_desiredmaxbitrate.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_desiredmaxbitrate.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredMaxBitrate
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredMaxBitrate
## -description
Gets or sets the desired maximum bitrate for the media source.
## -property-value
The desired maximum bitrate for the streaming media.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredMaxBitrate
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredMaxBitrate
+
+## -description
+Gets or sets the desired maximum bitrate for the media source.
+
+## -property-value
+The desired maximum bitrate for the streaming media.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_desiredminbitrate.md b/windows.media.streaming.adaptive/adaptivemediasource_desiredminbitrate.md
index 66d31a62d3..0ab484049f 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_desiredminbitrate.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_desiredminbitrate.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredMinBitrate
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredMinBitrate
## -description
Gets or sets the desired minimum bitrate for the media source.
## -property-value
The desired minimum bitrate for the streaming media.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredMinBitrate
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DesiredMinBitrate
+
+## -description
+Gets or sets the desired minimum bitrate for the media source.
+
+## -property-value
+The desired minimum bitrate for the streaming media.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_downloadbitratechanged.md b/windows.media.streaming.adaptive/adaptivemediasource_downloadbitratechanged.md
index d4084f20b6..73b2163f81 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_downloadbitratechanged.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_downloadbitratechanged.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadBitrateChanged
--api-type: winrt event
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadBitrateChanged
## -description
Occurs when the [CurrentDownloadBitrate](adaptivemediasource_currentdownloadbitrate.md) changes.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadBitrateChanged
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadBitrateChanged
+
+## -description
+Occurs when the [CurrentDownloadBitrate](adaptivemediasource_currentdownloadbitrate.md) changes.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_downloadcompleted.md b/windows.media.streaming.adaptive/adaptivemediasource_downloadcompleted.md
index 2fb38d51bd..d0a4429cd6 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_downloadcompleted.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_downloadcompleted.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadCompleted
--api-type: winrt event
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadCompleted
## -description
Occurs when a resource download operation completes
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadCompleted
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadCompleted
+
+## -description
+Occurs when a resource download operation completes
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_downloadfailed.md b/windows.media.streaming.adaptive/adaptivemediasource_downloadfailed.md
index 5cdef9b361..2900ecd017 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_downloadfailed.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_downloadfailed.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadFailed
--api-type: winrt event
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadFailed
## -description
Occurs when a resource download operation fails.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadFailed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadFailed
+
+## -description
+Occurs when a resource download operation fails.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_downloadrequested.md b/windows.media.streaming.adaptive/adaptivemediasource_downloadrequested.md
index 7ef6178421..5ca75c0136 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_downloadrequested.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_downloadrequested.md
@@ -1,3 +1,20 @@
----
-api-id: E:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadRequested
--api-type: winrt event
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadRequested
## -description
Occurs when a resource download operation is requested.
## -remarks
Handle this event to modify parameters of the resource download operation before the operation begins.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.DownloadRequested
+
+## -description
+Occurs when a resource download operation is requested.
+
+## -remarks
+Handle this event to modify parameters of the resource download operation before the operation begins.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_inboundbitspersecond.md b/windows.media.streaming.adaptive/adaptivemediasource_inboundbitspersecond.md
index f61de07a02..c86e590f3a 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_inboundbitspersecond.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_inboundbitspersecond.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InboundBitsPerSecond
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InboundBitsPerSecond
## -description
Gets a value indicating the inbound bits per second statistic over the time window specified by the [InboundBitsPerSecondWindow](adaptivemediasource_inboundbitspersecondwindow.md) property.
## -property-value
The inbound bits per second over the [InboundBitsPerSecondWindow](adaptivemediasource_inboundbitspersecondwindow.md) time span.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InboundBitsPerSecond
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InboundBitsPerSecond
+
+## -description
+Gets a value indicating the inbound bits per second statistic over the time window specified by the [InboundBitsPerSecondWindow](adaptivemediasource_inboundbitspersecondwindow.md) property.
+
+## -property-value
+The inbound bits per second over the [InboundBitsPerSecondWindow](adaptivemediasource_inboundbitspersecondwindow.md) time span.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_inboundbitspersecondwindow.md b/windows.media.streaming.adaptive/adaptivemediasource_inboundbitspersecondwindow.md
index 175323f823..d30c7e07be 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_inboundbitspersecondwindow.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_inboundbitspersecondwindow.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InboundBitsPerSecondWindow
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InboundBitsPerSecondWindow
## -description
Gets or sets the time span over which the [InboundBitsPerSecond](adaptivemediasource_inboundbitspersecond.md) property is calculated.
## -property-value
The time span over which the [InboundBitsPerSecond](adaptivemediasource_inboundbitspersecond.md) property is calculated.
## -remarks
The default value for this property is a time span of 5 minutes.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InboundBitsPerSecondWindow
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InboundBitsPerSecondWindow
+
+## -description
+Gets or sets the time span over which the [InboundBitsPerSecond](adaptivemediasource_inboundbitspersecond.md) property is calculated.
+
+## -property-value
+The time span over which the [InboundBitsPerSecond](adaptivemediasource_inboundbitspersecond.md) property is calculated.
+
+## -remarks
+The default value for this property is a time span of 5 minutes.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_initialbitrate.md b/windows.media.streaming.adaptive/adaptivemediasource_initialbitrate.md
index 1c23f3c2bf..1385a8e773 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_initialbitrate.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_initialbitrate.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InitialBitrate
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InitialBitrate
## -description
Gets and sets the initial bit rate to use for playback of the media source.
## -property-value
The initial bit rate to use for playback.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InitialBitrate
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.InitialBitrate
+
+## -description
+Gets and sets the initial bit rate to use for playback of the media source.
+
+## -property-value
+The initial bit rate to use for playback.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_iscontenttypesupported_639585181.md b/windows.media.streaming.adaptive/adaptivemediasource_iscontenttypesupported_639585181.md
index 36dacf3af5..30d9707198 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_iscontenttypesupported_639585181.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_iscontenttypesupported_639585181.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.IsContentTypeSupported(System.String)
--api-type: winrt method
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.IsContentTypeSupported
## -description
Determines whether the content type of the source is supported.
## -parameters
### -param contentType
A string that identifies the content type of the source. Can be a Http Live Streaming (HLS) or Dynamic Adaptive Streaming over HTTP (DASH) content type.
## -returns
Returns a value that indicates whether the content type of the source is supported. **true** if supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.IsContentTypeSupported(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.IsContentTypeSupported
+
+## -description
+Determines whether the content type of the source is supported.
+
+## -parameters
+### -param contentType
+A string that identifies the content type of the source. Can be a Http Live Streaming (HLS) or Dynamic Adaptive Streaming over HTTP (DASH) content type.
+
+## -returns
+Returns a value that indicates whether the content type of the source is supported. **true** if supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_islive.md b/windows.media.streaming.adaptive/adaptivemediasource_islive.md
index cf2cb0cc18..2c2ec70350 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_islive.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_islive.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.IsLive
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.IsLive
## -description
Gets a value that indicates whether the media source is live.
## -property-value
A value that indicates whether playback of the adaptive streaming object is live. **true** if live; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.IsLive
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.IsLive
+
+## -description
+Gets a value that indicates whether the media source is live.
+
+## -property-value
+A value that indicates whether playback of the adaptive streaming object is live. **true** if live; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasource_playbackbitratechanged.md b/windows.media.streaming.adaptive/adaptivemediasource_playbackbitratechanged.md
index fb4be74481..a2f58f5bce 100644
--- a/windows.media.streaming.adaptive/adaptivemediasource_playbackbitratechanged.md
+++ b/windows.media.streaming.adaptive/adaptivemediasource_playbackbitratechanged.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.PlaybackBitrateChanged
--api-type: winrt event
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.PlaybackBitrateChanged
## -description
Occurs when the [CurrentPlaybackBitrate](adaptivemediasource_currentplaybackbitrate.md) changes.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.PlaybackBitrateChanged
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSource.PlaybackBitrateChanged
+
+## -description
+Occurs when the [CurrentPlaybackBitrate](adaptivemediasource_currentplaybackbitrate.md) changes.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings.md b/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings.md
index 29fa403e62..8409c8f6be 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings
--api-type: winrt class
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings
## -description
Provides advanced settings for an [AdaptiveMediaSource](adaptivemediasource.md).
## -remarks
Get an instance of this class by accessing the [AdaptiveMediaSource.AdvancedSettings](adaptivemediasource_advancedsettings.md) property.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings
+
+## -description
+Provides advanced settings for an [AdaptiveMediaSource](adaptivemediasource.md).
+
+## -remarks
+Get an instance of this class by accessing the [AdaptiveMediaSource.AdvancedSettings](adaptivemediasource_advancedsettings.md) property.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_allsegmentsindependent.md b/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_allsegmentsindependent.md
index 78c7c23b05..5562b295c2 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_allsegmentsindependent.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_allsegmentsindependent.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.AllSegmentsIndependent
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.AllSegmentsIndependent
## -description
Gets or sets a value indicating whether media segments are known in advance to be fully independent such that each segment can be decoded and rendered without requiring any information from any other media segment.
## -property-value
True if the media segments for the [AdaptiveMediaSource](adaptivemediasource.md) are independent; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.AllSegmentsIndependent
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.AllSegmentsIndependent
+
+## -description
+Gets or sets a value indicating whether media segments are known in advance to be fully independent such that each segment can be decoded and rendered without requiring any information from any other media segment.
+
+## -property-value
+True if the media segments for the [AdaptiveMediaSource](adaptivemediasource.md) are independent; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_bitratedowngradetriggerratio.md b/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_bitratedowngradetriggerratio.md
index 42ece99879..52e83bc943 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_bitratedowngradetriggerratio.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_bitratedowngradetriggerratio.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.BitrateDowngradeTriggerRatio
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.BitrateDowngradeTriggerRatio
## -description
Gets or sets a value that specifies how low the inbound bits per second may drop before the adaptive media source will switch down to a different encoding bitrate to download.
## -property-value
A floating point value that is the ratio of actual inbound bitrate to the target bitrate.
## -remarks
For example, if the current downloading bitrate for a particular HLS stream variant or DASH representation is 1000bps and the **BitrateDowngradeTriggerRatio** is 1.0, the adaptive media source will allow the inbound bits per second to drop to 1000bps before attempting to switch to a lower encoding bitrate.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.BitrateDowngradeTriggerRatio
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.BitrateDowngradeTriggerRatio
+
+## -description
+Gets or sets a value that specifies how low the inbound bits per second may drop before the adaptive media source will switch down to a different encoding bitrate to download.
+
+## -property-value
+A floating point value that is the ratio of actual inbound bitrate to the target bitrate.
+
+## -remarks
+For example, if the current downloading bitrate for a particular HLS stream variant or DASH representation is 1000bps and the **BitrateDowngradeTriggerRatio** is 1.0, the adaptive media source will allow the inbound bits per second to drop to 1000bps before attempting to switch to a lower encoding bitrate.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_desiredbitrateheadroomratio.md b/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_desiredbitrateheadroomratio.md
index c117df7930..da5f80c934 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_desiredbitrateheadroomratio.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourceadvancedsettings_desiredbitrateheadroomratio.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.DesiredBitrateHeadroomRatio
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.DesiredBitrateHeadroomRatio
## -description
Gets or sets a value that specifies the minimum inbound bits per second required before the adaptive media source will switch up to one of the available encoded bitrates to download.
## -property-value
The minimum inbound bits per second before switching to another available encoded bitrate.
## -remarks
For example, if the bitrate for a particular HLS stream variant or DASH representation is 1000bps and the **DesiredBitrateHeadroomRatio** is 1.2, the adaptive media source will require at least 1200bps inbound bits per second.
Enforcement of this property is relaxed for the lowest bitrate that contains video in order to minimize selection of audio-only bitrates.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.DesiredBitrateHeadroomRatio
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceAdvancedSettings.DesiredBitrateHeadroomRatio
+
+## -description
+Gets or sets a value that specifies the minimum inbound bits per second required before the adaptive media source will switch up to one of the available encoded bitrates to download.
+
+## -property-value
+The minimum inbound bits per second before switching to another available encoded bitrate.
+
+## -remarks
+For example, if the bitrate for a particular HLS stream variant or DASH representation is 1000bps and the **DesiredBitrateHeadroomRatio** is 1.2, the adaptive media source will require at least 1200bps inbound bits per second.
+
+Enforcement of this property is relaxed for the lowest bitrate that contains video in order to minimize selection of audio-only bitrates.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcecreationresult.md b/windows.media.streaming.adaptive/adaptivemediasourcecreationresult.md
index 8a00a9d60d..710b7b5dcf 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcecreationresult.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcecreationresult.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult
--api-type: winrt class
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult
## -description
Represents the result of the creation of a [AdaptiveMediaSource](adaptivemediasource.md) object.
## -remarks
This object is accessed when you call one of the [CreateAsync](adaptivemediasource_createasync.md) methods to create a [AdaptiveMediaSource](adaptivemediasource.md) object.
For how-to guidance for using adaptive streaming in your app, see [Adaptive streaming](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/adaptive-streaming).
## -examples
## -see-also
[Adaptive streaming](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/adaptive-streaming)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult
+
+## -description
+Represents the result of the creation of a [AdaptiveMediaSource](adaptivemediasource.md) object.
+
+## -remarks
+This object is accessed when you call one of the [CreateAsync](adaptivemediasource_createasync.md) methods to create a [AdaptiveMediaSource](adaptivemediasource.md) object.
+
+For how-to guidance for using adaptive streaming in your app, see [Adaptive streaming](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/adaptive-streaming).
+
+## -examples
+
+## -see-also
+[Adaptive streaming](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/adaptive-streaming)
\ No newline at end of file
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_httpresponsemessage.md b/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_httpresponsemessage.md
index a32b4b9290..3a398f4359 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_httpresponsemessage.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_httpresponsemessage.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.HttpResponseMessage
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.HttpResponseMessage
## -description
Gets the HTTP response message, if any, returned from an attempt to create a [AdaptiveMediaSource](adaptivemediasource.md) object.
## -property-value
The HTTP response message returned from an attempt to create a [AdaptiveMediaSource](adaptivemediasource.md) object.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.HttpResponseMessage
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.HttpResponseMessage
+
+## -description
+Gets the HTTP response message, if any, returned from an attempt to create a [AdaptiveMediaSource](adaptivemediasource.md) object.
+
+## -property-value
+The HTTP response message returned from an attempt to create a [AdaptiveMediaSource](adaptivemediasource.md) object.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_mediasource.md b/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_mediasource.md
index 53f60a81bc..a5059f68b7 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_mediasource.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_mediasource.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.MediaSource
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.MediaSource
## -description
Gets the [AdaptiveMediaSource](adaptivemediasource.md) object that represents the source of adaptive streaming content.
## -property-value
The [AdaptiveMediaSource](adaptivemediasource.md) object that represents the source of adaptive streaming content.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.MediaSource
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.MediaSource
+
+## -description
+Gets the [AdaptiveMediaSource](adaptivemediasource.md) object that represents the source of adaptive streaming content.
+
+## -property-value
+The [AdaptiveMediaSource](adaptivemediasource.md) object that represents the source of adaptive streaming content.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_status.md b/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_status.md
index c69b02a731..63fca09c96 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_status.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcecreationresult_status.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.Status
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.Status
## -description
Gets the status of an attempt to create a [AdaptiveMediaSource](adaptivemediasource.md) object.
## -property-value
A [AdaptiveMediaSourceCreationStatus](adaptivemediasourcecreationstatus.md)-typed value that specifies the result of an attempt to create a [AdaptiveMediaSource](adaptivemediasource.md) object.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.Status
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceCreationResult.Status
+
+## -description
+Gets the status of an attempt to create a [AdaptiveMediaSource](adaptivemediasource.md) object.
+
+## -property-value
+A [AdaptiveMediaSourceCreationStatus](adaptivemediasourcecreationstatus.md)-typed value that specifies the result of an attempt to create a [AdaptiveMediaSource](adaptivemediasource.md) object.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs.md
index fdb96047b7..cb15460b4a 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs
--api-type: winrt class
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs
## -description
Provides data for the [DownloadBitrateChanged](adaptivemediasource_downloadbitratechanged.md) event.
## -remarks
Obtain an instance of this class by implementing a handler for the [DownloadBitrateChanged](adaptivemediasource_downloadbitratechanged.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs
+
+## -description
+Provides data for the [DownloadBitrateChanged](adaptivemediasource_downloadbitratechanged.md) event.
+
+## -remarks
+Obtain an instance of this class by implementing a handler for the [DownloadBitrateChanged](adaptivemediasource_downloadbitratechanged.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs_newvalue.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs_newvalue.md
index 962f41cef8..d474e2f489 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs_newvalue.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs_newvalue.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs.NewValue
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs.NewValue
## -description
Gets a value indicating the new download bitrate for the media source.
## -property-value
A value indicating the new download bitrate for the media source.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs.NewValue
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs.NewValue
+
+## -description
+Gets a value indicating the new download bitrate for the media source.
+
+## -property-value
+A value indicating the new download bitrate for the media source.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs_oldvalue.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs_oldvalue.md
index fbfe557e45..fba91b35c9 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs_oldvalue.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadbitratechangedeventargs_oldvalue.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs.OldValue
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs.OldValue
## -description
Gets a value indicating the previous download bitrate for the media source.
## -property-value
A value indicating the previous download bitrate for the media source.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs.OldValue
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadBitrateChangedEventArgs.OldValue
+
+## -description
+Gets a value indicating the previous download bitrate for the media source.
+
+## -property-value
+A value indicating the previous download bitrate for the media source.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs.md
index 7b0bae2a1b..ea01297ad3 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs
--api-type: winrt class
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs
## -description
Provides data for the [DownloadCompleted](adaptivemediasource_downloadcompleted.md) event.
## -remarks
Obtain an instance of this class by implementing a handler for the [DownloadCompleted](adaptivemediasource_downloadcompleted.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs
+
+## -description
+Provides data for the [DownloadCompleted](adaptivemediasource_downloadcompleted.md) event.
+
+## -remarks
+Obtain an instance of this class by implementing a handler for the [DownloadCompleted](adaptivemediasource_downloadcompleted.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_httpresponsemessage.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_httpresponsemessage.md
index cbcdf54d52..641adb9e08 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_httpresponsemessage.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_httpresponsemessage.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.HttpResponseMessage
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.HttpResponseMessage
## -description
Gets the http response message, if any, returned from the completed media download request.
## -property-value
The http response message returned from the completed media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.HttpResponseMessage
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.HttpResponseMessage
+
+## -description
+Gets the http response message, if any, returned from the completed media download request.
+
+## -property-value
+The http response message returned from the completed media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcebyterangelength.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcebyterangelength.md
index f493014bd8..18386ce938 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcebyterangelength.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcebyterangelength.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceByteRangeLength
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceByteRangeLength
## -description
Gets the byte range length of the completed media download request.
## -property-value
The byte range length of the completed media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceByteRangeLength
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceByteRangeLength
+
+## -description
+Gets the byte range length of the completed media download request.
+
+## -property-value
+The byte range length of the completed media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcebyterangeoffset.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcebyterangeoffset.md
index d33c298aa0..c775543925 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcebyterangeoffset.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcebyterangeoffset.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceByteRangeOffset
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceByteRangeOffset
## -description
Gets the byte range offset of the completed media download request.
## -property-value
The byte range offset of the completed media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceByteRangeOffset
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceByteRangeOffset
+
+## -description
+Gets the byte range offset of the completed media download request.
+
+## -property-value
+The byte range offset of the completed media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcetype.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcetype.md
index fc965a0758..07a5df86be 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcetype.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourcetype.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceType
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceType
## -description
Gets the resource type of the completed media download request.
## -property-value
The resource type of the completed media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceType
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceType
+
+## -description
+Gets the resource type of the completed media download request.
+
+## -property-value
+The resource type of the completed media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourceuri.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourceuri.md
index 367368c5f7..5c69cdc074 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourceuri.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadcompletedeventargs_resourceuri.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceUri
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceUri
## -description
Gets the resource URI of the completed media download request.
## -property-value
The resource URI of the completed media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceUri
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadCompletedEventArgs.ResourceUri
+
+## -description
+Gets the resource URI of the completed media download request.
+
+## -property-value
+The resource URI of the completed media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs.md
index 8c26e503cd..e5a4817a9e 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs
--api-type: winrt class
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs
## -description
Provides data for the [DownloadFailed](adaptivemediasource_downloadfailed.md) event.
## -remarks
Obtain an instance of this class by implementing a handler for the [DownloadFailed](adaptivemediasource_downloadfailed.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs
+
+## -description
+Provides data for the [DownloadFailed](adaptivemediasource_downloadfailed.md) event.
+
+## -remarks
+Obtain an instance of this class by implementing a handler for the [DownloadFailed](adaptivemediasource_downloadfailed.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_httpresponsemessage.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_httpresponsemessage.md
index e8913707fb..8ce54f2c08 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_httpresponsemessage.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_httpresponsemessage.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.HttpResponseMessage
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.HttpResponseMessage
## -description
Gets the http response message, if any, returned from the failed media download request.
## -property-value
The http response message returned from the failed media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.HttpResponseMessage
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.HttpResponseMessage
+
+## -description
+Gets the http response message, if any, returned from the failed media download request.
+
+## -property-value
+The http response message returned from the failed media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcebyterangelength.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcebyterangelength.md
index 3c74462601..d302b9d24c 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcebyterangelength.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcebyterangelength.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceByteRangeLength
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceByteRangeLength
## -description
Gets the byte range length of the failed media download request.
## -property-value
The byte range length of the failed media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceByteRangeLength
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceByteRangeLength
+
+## -description
+Gets the byte range length of the failed media download request.
+
+## -property-value
+The byte range length of the failed media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcebyterangeoffset.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcebyterangeoffset.md
index c247c498de..acbaaa24d0 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcebyterangeoffset.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcebyterangeoffset.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceByteRangeOffset
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceByteRangeOffset
## -description
Gets the byte range offset of the failed media download request.
## -property-value
The byte range offset of the failed media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceByteRangeOffset
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceByteRangeOffset
+
+## -description
+Gets the byte range offset of the failed media download request.
+
+## -property-value
+The byte range offset of the failed media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcetype.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcetype.md
index 4fef89a127..335279866c 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcetype.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourcetype.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceType
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceType
## -description
Gets the resource type of the failed media download request.
## -property-value
The resource type of the failed media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceType
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceType
+
+## -description
+Gets the resource type of the failed media download request.
+
+## -property-value
+The resource type of the failed media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourceuri.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourceuri.md
index e70c22ad61..a4b641810e 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourceuri.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadfailedeventargs_resourceuri.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceUri
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceUri
## -description
Gets the resource URI of the failed media download request.
## -property-value
The resource URI of the failed media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceUri
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadFailedEventArgs.ResourceUri
+
+## -description
+Gets the resource URI of the failed media download request.
+
+## -property-value
+The resource URI of the failed media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequesteddeferral.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequesteddeferral.md
index 5d643df485..ef7de6d26b 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequesteddeferral.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequesteddeferral.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedDeferral
--api-type: winrt class
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedDeferral
## -description
Represents a deferral that can be used to defer the completion of the [DownloadRequested](adaptivemediasource_downloadrequested.md) event so that the app can asynchronously download media content.
## -remarks
To get an instance of this class call [AdaptiveMediaSourceDownloadRequestedEventargs.GetDeferral](adaptivemediasourcedownloadrequestedeventargs_getdeferral.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedDeferral
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedDeferral
+
+## -description
+Represents a deferral that can be used to defer the completion of the [DownloadRequested](adaptivemediasource_downloadrequested.md) event so that the app can asynchronously download media content.
+
+## -remarks
+To get an instance of this class call [AdaptiveMediaSourceDownloadRequestedEventargs.GetDeferral](adaptivemediasourcedownloadrequestedeventargs_getdeferral.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequesteddeferral_complete_1807836922.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequesteddeferral_complete_1807836922.md
index 030c470fd8..59430486b0 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequesteddeferral_complete_1807836922.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequesteddeferral_complete_1807836922.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedDeferral.Complete
--api-type: winrt method
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedDeferral.Complete
## -description
Informs the system that an asynchronous operation associated with a [DownloadRequested](adaptivemediasource_downloadrequested.md) event has finished.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedDeferral.Complete
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedDeferral.Complete
+
+## -description
+Informs the system that an asynchronous operation associated with a [DownloadRequested](adaptivemediasource_downloadrequested.md) event has finished.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs.md
index 4b26637ce9..f495aafc9b 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs
--api-type: winrt class
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs
## -description
Provides data for the [DownloadRequested](adaptivemediasource_downloadrequested.md) event.
## -remarks
Obtain an instance of this class by implementing a handler for the [DownloadRequested](adaptivemediasource_downloadrequested.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs
+
+## -description
+Provides data for the [DownloadRequested](adaptivemediasource_downloadrequested.md) event.
+
+## -remarks
+Obtain an instance of this class by implementing a handler for the [DownloadRequested](adaptivemediasource_downloadrequested.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_getdeferral_254836512.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_getdeferral_254836512.md
index 1cb74cc35d..1565a3af7d 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_getdeferral_254836512.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_getdeferral_254836512.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.GetDeferral
--api-type: winrt method
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.GetDeferral
## -description
Gets a deferral that can be used to defer the completion of the [DownloadRequested](adaptivemediasource_downloadrequested.md) event so that the app can asynchronously download media content.
## -returns
A deferral that can be used to defer the completion of the [DownloadRequested](adaptivemediasource_downloadrequested.md) event.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.GetDeferral
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.GetDeferral
+
+## -description
+Gets a deferral that can be used to defer the completion of the [DownloadRequested](adaptivemediasource_downloadrequested.md) event so that the app can asynchronously download media content.
+
+## -returns
+A deferral that can be used to defer the completion of the [DownloadRequested](adaptivemediasource_downloadrequested.md) event.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcebyterangelength.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcebyterangelength.md
index 92a866c8a8..d3f5e4a160 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcebyterangelength.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcebyterangelength.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceByteRangeLength
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceByteRangeLength
## -description
Gets the byte range length of the media download request.
## -property-value
The byte range length of the media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceByteRangeLength
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceByteRangeLength
+
+## -description
+Gets the byte range length of the media download request.
+
+## -property-value
+The byte range length of the media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcebyterangeoffset.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcebyterangeoffset.md
index 7005ea7b50..c5e7547982 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcebyterangeoffset.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcebyterangeoffset.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceByteRangeOffset
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceByteRangeOffset
## -description
Gets the byte range offset of the media download request.
## -property-value
The byte range offset of the media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceByteRangeOffset
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceByteRangeOffset
+
+## -description
+Gets the byte range offset of the media download request.
+
+## -property-value
+The byte range offset of the media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcetype.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcetype.md
index 28c9f1e952..ff10956fb5 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcetype.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourcetype.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceType
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceType
## -description
Gets the resource type of the media download request.
## -property-value
The resource type of the media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceType
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceType
+
+## -description
+Gets the resource type of the media download request.
+
+## -property-value
+The resource type of the media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourceuri.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourceuri.md
index b25daa8d24..340081d308 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourceuri.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_resourceuri.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceUri
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceUri
## -description
Gets the resource URI of the media download request.
## -property-value
The resource URI of the media download request.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceUri
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.ResourceUri
+
+## -description
+Gets the resource URI of the media download request.
+
+## -property-value
+The resource URI of the media download request.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_result.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_result.md
index 27ed05762d..132321f97f 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_result.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadrequestedeventargs_result.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.Result
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.Result
## -description
Gets an [AdaptiveMediaSourceDownloadResult](adaptivemediasourcedownloadresult.md) object representing the result of the media download request.
## -property-value
The result of the media download request.
## -remarks
Apps that manually perform the download of resources can set the properties of the returned [AdaptiveMediaSourceDownloadResult](adaptivemediasourcedownloadresult.md) object to provide the stream and content type of the downloaded resource to the [AdaptiveMediaSource](adaptivemediasource.md) object.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.Result
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadRequestedEventArgs.Result
+
+## -description
+Gets an [AdaptiveMediaSourceDownloadResult](adaptivemediasourcedownloadresult.md) object representing the result of the media download request.
+
+## -property-value
+The result of the media download request.
+
+## -remarks
+Apps that manually perform the download of resources can set the properties of the returned [AdaptiveMediaSourceDownloadResult](adaptivemediasourcedownloadresult.md) object to provide the stream and content type of the downloaded resource to the [AdaptiveMediaSource](adaptivemediasource.md) object.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult.md
index 2217d53de2..e9c6b7552b 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult
--api-type: winrt class
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult
## -description
Represents the results of a resource download operation.
## -remarks
Obtain an instance of this class from the [Result](adaptivemediasourcedownloadrequestedeventargs_result.md) property of the [AdaptiveMediaSourceDownloadRequestedEventArgs](adaptivemediasourcedownloadrequestedeventargs.md) object passed to the handler for the [DownloadRequested](adaptivemediasource_downloadrequested.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult
+
+## -description
+Represents the results of a resource download operation.
+
+## -remarks
+Obtain an instance of this class from the [Result](adaptivemediasourcedownloadrequestedeventargs_result.md) property of the [AdaptiveMediaSourceDownloadRequestedEventArgs](adaptivemediasourcedownloadrequestedeventargs.md) object passed to the handler for the [DownloadRequested](adaptivemediasource_downloadrequested.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_buffer.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_buffer.md
index ca8c764789..abc1134fbc 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_buffer.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_buffer.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.Buffer
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.Buffer
## -description
Gets or sets a buffer containing the downloaded resource.
## -property-value
A buffer containing the downloaded resource.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.Buffer
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.Buffer
+
+## -description
+Gets or sets a buffer containing the downloaded resource.
+
+## -property-value
+A buffer containing the downloaded resource.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_contenttype.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_contenttype.md
index 6967f49959..2a0f553488 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_contenttype.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_contenttype.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ContentType
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ContentType
## -description
Gets or sets a string that identifies the MIME content type of the downloaded resource.
## -property-value
A string that identifies the MIME content type of the downloaded resource.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ContentType
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ContentType
+
+## -description
+Gets or sets a string that identifies the MIME content type of the downloaded resource.
+
+## -property-value
+A string that identifies the MIME content type of the downloaded resource.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_extendedstatus.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_extendedstatus.md
index 6224c2bff3..bdd0e23cd8 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_extendedstatus.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_extendedstatus.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ExtendedStatus
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ExtendedStatus
## -description
Gets or sets an integer value that represents extended status information about the resource download operation.
## -property-value
An integer value that represents extended status information about the resource download operation.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ExtendedStatus
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ExtendedStatus
+
+## -description
+Gets or sets an integer value that represents extended status information about the resource download operation.
+
+## -property-value
+An integer value that represents extended status information about the resource download operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_inputstream.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_inputstream.md
index aaf8406a75..a308d6dc5c 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_inputstream.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_inputstream.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.InputStream
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.InputStream
## -description
Gets or sets an input stream containing the downloaded resource.
## -property-value
An input stream containing the downloaded resource.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.InputStream
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.InputStream
+
+## -description
+Gets or sets an input stream containing the downloaded resource.
+
+## -property-value
+An input stream containing the downloaded resource.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourcebyterangelength.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourcebyterangelength.md
index c08060c5bd..15c712d21e 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourcebyterangelength.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourcebyterangelength.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceByteRangeLength
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceByteRangeLength
## -description
Gets or sets the requested byte range of the resource to be downloaded.
## -property-value
The requested byte range of the resource to be downloaded.
## -remarks
If this value is set to null, no byte range request is issued and the entire resource will be downloaded. Setting the byte range length to zero is not allowed. If a non-null, non-zero value is specified, then the system will use the value, along with any value specified for the [ResourceByteRangeOffset](adaptivemediasourcedownloadresult_resourcebyterangeoffset.md) property, to issue a byte range request to the Http server hosting the resource.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceByteRangeLength
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceByteRangeLength
+
+## -description
+Gets or sets the requested byte range of the resource to be downloaded.
+
+## -property-value
+The requested byte range of the resource to be downloaded.
+
+## -remarks
+If this value is set to null, no byte range request is issued and the entire resource will be downloaded. Setting the byte range length to zero is not allowed. If a non-null, non-zero value is specified, then the system will use the value, along with any value specified for the [ResourceByteRangeOffset](adaptivemediasourcedownloadresult_resourcebyterangeoffset.md) property, to issue a byte range request to the Http server hosting the resource.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourcebyterangeoffset.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourcebyterangeoffset.md
index 9d42b559eb..eca401f58f 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourcebyterangeoffset.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourcebyterangeoffset.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceByteRangeOffset
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceByteRangeOffset
## -description
Gets or sets the requested byte range offset of the resource to be downloaded.
## -property-value
The requested byte range offset of the resource to be downloaded.
## -remarks
If a non-null, non-zero value is specified for the [ResourceByteRangeLength](adaptivemediasourcedownloadresult_resourcebyterangelength.md) property, the value of **ResourceByteRangeOffset** is used to issue a byte range request to the Http server hosting the resource.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceByteRangeOffset
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceByteRangeOffset
+
+## -description
+Gets or sets the requested byte range offset of the resource to be downloaded.
+
+## -property-value
+The requested byte range offset of the resource to be downloaded.
+
+## -remarks
+If a non-null, non-zero value is specified for the [ResourceByteRangeLength](adaptivemediasourcedownloadresult_resourcebyterangelength.md) property, the value of **ResourceByteRangeOffset** is used to issue a byte range request to the Http server hosting the resource.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourceuri.md b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourceuri.md
index d4889d6193..d97888c407 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourceuri.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourcedownloadresult_resourceuri.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceUri
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceUri
## -description
Gets or sets the Uniform Resource Identifier (URI) of the downloaded resource.
## -property-value
The Uniform Resource Identifier (URI) of the downloaded resource.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceUri
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDownloadResult.ResourceUri
+
+## -description
+Gets or sets the Uniform Resource Identifier (URI) of the downloaded resource.
+
+## -property-value
+The Uniform Resource Identifier (URI) of the downloaded resource.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs.md b/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs.md
index 85521865b1..4bc045d7d1 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs
--api-type: winrt class
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs
## -description
Provides data for the [PlaybackBitrateChanged](adaptivemediasource_playbackbitratechanged.md) event.
## -remarks
Obtain an instance of this class by implementing a handler for the [PlaybackBitrateChanged](adaptivemediasource_playbackbitratechanged.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs
+
+## -description
+Provides data for the [PlaybackBitrateChanged](adaptivemediasource_playbackbitratechanged.md) event.
+
+## -remarks
+Obtain an instance of this class by implementing a handler for the [PlaybackBitrateChanged](adaptivemediasource_playbackbitratechanged.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_audioonly.md b/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_audioonly.md
index c225ddf152..98f94e2a2c 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_audioonly.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_audioonly.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.AudioOnly
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.AudioOnly
## -description
Gets a value indicating whether the media source contains only audio data.
## -property-value
A value indicating whether the media source contains only audio data.
## -remarks
Check the value of this property to determine if the media content is audio-only and adjust your UI accordingly.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.AudioOnly
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.AudioOnly
+
+## -description
+Gets a value indicating whether the media source contains only audio data.
+
+## -property-value
+A value indicating whether the media source contains only audio data.
+
+## -remarks
+Check the value of this property to determine if the media content is audio-only and adjust your UI accordingly.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_newvalue.md b/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_newvalue.md
index ede7210efa..e4df19a748 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_newvalue.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_newvalue.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.NewValue
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.NewValue
## -description
Gets the new playback bitrate.
## -property-value
The new playback bitrate.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.NewValue
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.NewValue
+
+## -description
+Gets the new playback bitrate.
+
+## -property-value
+The new playback bitrate.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_oldvalue.md b/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_oldvalue.md
index 6e684c5af2..d1b16eb15e 100644
--- a/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_oldvalue.md
+++ b/windows.media.streaming.adaptive/adaptivemediasourceplaybackbitratechangedeventargs_oldvalue.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.OldValue
--api-type: winrt property
----
# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.OldValue
## -description
Gets the old playback bitrate.
## -property-value
The old playback bitrate.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.OldValue
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Streaming.Adaptive.AdaptiveMediaSourcePlaybackBitrateChangedEventArgs.OldValue
+
+## -description
+Gets the old playback bitrate.
+
+## -property-value
+The old playback bitrate.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.transcoding/mediatranscoder_addaudioeffect_1019588069.md b/windows.media.transcoding/mediatranscoder_addaudioeffect_1019588069.md
index 2920b87a92..a6343f8154 100644
--- a/windows.media.transcoding/mediatranscoder_addaudioeffect_1019588069.md
+++ b/windows.media.transcoding/mediatranscoder_addaudioeffect_1019588069.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.Transcoding.MediaTranscoder.AddAudioEffect(System.String,System.Boolean,Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.Transcoding.MediaTranscoder.AddAudioEffect
## -description
Adds the specified audio effect with configuration properties, and indicates whether the effect is required.
## -parameters
### -param activatableClassId
The identifier of the audio effect.
### -param effectRequired
Indicates whether the audio effect is required.
### -param configuration
Configuration properties for the audio effect.
## -remarks
## -examples
## -see-also
[AddAudioEffect(String)](mediatranscoder_addaudioeffect_562258289.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Transcoding.MediaTranscoder.AddAudioEffect(System.String,System.Boolean,Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.AddAudioEffect
+
+## -description
+Adds the specified audio effect with configuration properties, and indicates whether the effect is required.
+
+## -parameters
+### -param activatableClassId
+The identifier of the audio effect.
+
+### -param effectRequired
+Indicates whether the audio effect is required.
+
+### -param configuration
+Configuration properties for the audio effect.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[AddAudioEffect(String)](mediatranscoder_addaudioeffect_562258289.md)
\ No newline at end of file
diff --git a/windows.media.transcoding/mediatranscoder_addaudioeffect_562258289.md b/windows.media.transcoding/mediatranscoder_addaudioeffect_562258289.md
index 2a3260fd0c..f055d08636 100644
--- a/windows.media.transcoding/mediatranscoder_addaudioeffect_562258289.md
+++ b/windows.media.transcoding/mediatranscoder_addaudioeffect_562258289.md
@@ -1,3 +1,24 @@
----
-api-id: M:Windows.Media.Transcoding.MediaTranscoder.AddAudioEffect(System.String)
--api-type: winrt method
----
# Windows.Media.Transcoding.MediaTranscoder.AddAudioEffect
## -description
Adds the specified audio effect.
## -parameters
### -param activatableClassId
The identifier of the audio effect.
## -remarks
## -examples
## -see-also
[AddAudioEffect(String, Boolean, IPropertySet)](mediatranscoder_addaudioeffect_1019588069.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Transcoding.MediaTranscoder.AddAudioEffect(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.AddAudioEffect
+
+## -description
+Adds the specified audio effect.
+
+## -parameters
+### -param activatableClassId
+The identifier of the audio effect.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[AddAudioEffect(String, Boolean, IPropertySet)](mediatranscoder_addaudioeffect_1019588069.md)
\ No newline at end of file
diff --git a/windows.media.transcoding/mediatranscoder_addvideoeffect_205953283.md b/windows.media.transcoding/mediatranscoder_addvideoeffect_205953283.md
index 71779d5031..d3e8ab6e4a 100644
--- a/windows.media.transcoding/mediatranscoder_addvideoeffect_205953283.md
+++ b/windows.media.transcoding/mediatranscoder_addvideoeffect_205953283.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.Transcoding.MediaTranscoder.AddVideoEffect(System.String,System.Boolean,Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.Transcoding.MediaTranscoder.AddVideoEffect
## -description
Adds the specified video effect with configuration properties and indicates whether the effect is required.
## -parameters
### -param activatableClassId
The identifier of the video effect.
### -param effectRequired
Indicates whether the video effect is required.
### -param configuration
Configuration properties for the video effect.
## -remarks
## -examples
## -see-also
[AddVideoEffect(String)](mediatranscoder_addvideoeffect_285234583.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Transcoding.MediaTranscoder.AddVideoEffect(System.String,System.Boolean,Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.AddVideoEffect
+
+## -description
+Adds the specified video effect with configuration properties and indicates whether the effect is required.
+
+## -parameters
+### -param activatableClassId
+The identifier of the video effect.
+
+### -param effectRequired
+Indicates whether the video effect is required.
+
+### -param configuration
+Configuration properties for the video effect.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[AddVideoEffect(String)](mediatranscoder_addvideoeffect_285234583.md)
\ No newline at end of file
diff --git a/windows.media.transcoding/mediatranscoder_addvideoeffect_285234583.md b/windows.media.transcoding/mediatranscoder_addvideoeffect_285234583.md
index 50ba361b0e..570e0527c6 100644
--- a/windows.media.transcoding/mediatranscoder_addvideoeffect_285234583.md
+++ b/windows.media.transcoding/mediatranscoder_addvideoeffect_285234583.md
@@ -1,29 +1,29 @@
----
--api-id: M:Windows.Media.Transcoding.MediaTranscoder.AddVideoEffect(System.String)
--api-type: winrt method
----
-
-
-
-# Windows.Media.Transcoding.MediaTranscoder.AddVideoEffect
-
-## -description
-Adds the specified video effect.
-
-## -parameters
-### -param activatableClassId
-The identifier of the video effect.
-
-## -remarks
-
-## -examples
-The following example adds a video effect to the transcoder.
-
-
-
-[!code-js[Transcoding_DoTranscode](../windows.media.transcoding/code/Transcoding/javascript/default.js#SnippetTranscoding_DoTranscode)]
-
-## -see-also
-[AddVideoEffect(String, Boolean, IPropertySet)](mediatranscoder_addvideoeffect_205953283.md)
+---
+-api-id: M:Windows.Media.Transcoding.MediaTranscoder.AddVideoEffect(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.AddVideoEffect
+
+## -description
+Adds the specified video effect.
+
+## -parameters
+### -param activatableClassId
+The identifier of the video effect.
+
+## -remarks
+
+## -examples
+The following example adds a video effect to the transcoder.
+
+
+
+[!code-js[Transcoding_DoTranscode](../windows.media.transcoding/code/Transcoding/javascript/default.js#SnippetTranscoding_DoTranscode)]
+
+## -see-also
+[AddVideoEffect(String, Boolean, IPropertySet)](mediatranscoder_addvideoeffect_205953283.md)
diff --git a/windows.media.transcoding/mediatranscoder_alwaysreencode.md b/windows.media.transcoding/mediatranscoder_alwaysreencode.md
index 2ae5c03121..6955f72a0d 100644
--- a/windows.media.transcoding/mediatranscoder_alwaysreencode.md
+++ b/windows.media.transcoding/mediatranscoder_alwaysreencode.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Transcoding.MediaTranscoder.AlwaysReencode
--api-type: winrt property
----
# Windows.Media.Transcoding.MediaTranscoder.AlwaysReencode
## -description
Specifies whether the media transcoder always re-encodes the source.
## -property-value
**true** if the media transcoder always re-encodes the source; otherwise **false**. The default value is **false**.
## -remarks
If this property is **false**, the media transcoder remuxes the source without re-encoding, when possible. If the property is **true**, the media transcoder always re-encodes the source. The default value is **false**.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Transcoding.MediaTranscoder.AlwaysReencode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.AlwaysReencode
+
+## -description
+Specifies whether the media transcoder always re-encodes the source.
+
+## -property-value
+**true** if the media transcoder always re-encodes the source; otherwise **false**. The default value is **false**.
+
+## -remarks
+If this property is **false**, the media transcoder remuxes the source without re-encoding, when possible. If the property is **true**, the media transcoder always re-encodes the source. The default value is **false**.
+
+## -examples
+
+## -see-also
diff --git a/windows.media.transcoding/mediatranscoder_cleareffects_175530613.md b/windows.media.transcoding/mediatranscoder_cleareffects_175530613.md
index 2ecce2b7f6..38f7a6a312 100644
--- a/windows.media.transcoding/mediatranscoder_cleareffects_175530613.md
+++ b/windows.media.transcoding/mediatranscoder_cleareffects_175530613.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Transcoding.MediaTranscoder.ClearEffects
--api-type: winrt method
----
# Windows.Media.Transcoding.MediaTranscoder.ClearEffects
## -description
Removes all audio and video effects from the transcode session.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Transcoding.MediaTranscoder.ClearEffects
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.ClearEffects
+
+## -description
+Removes all audio and video effects from the transcode session.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.transcoding/mediatranscoder_hardwareaccelerationenabled.md b/windows.media.transcoding/mediatranscoder_hardwareaccelerationenabled.md
index 4acf4ca7d2..57907df524 100644
--- a/windows.media.transcoding/mediatranscoder_hardwareaccelerationenabled.md
+++ b/windows.media.transcoding/mediatranscoder_hardwareaccelerationenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Transcoding.MediaTranscoder.HardwareAccelerationEnabled
--api-type: winrt property
----
# Windows.Media.Transcoding.MediaTranscoder.HardwareAccelerationEnabled
## -description
Specifies whether hardware acceleration is enabled.
## -property-value
Set to **true** if enabled, otherwise **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Transcoding.MediaTranscoder.HardwareAccelerationEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.HardwareAccelerationEnabled
+
+## -description
+Specifies whether hardware acceleration is enabled.
+
+## -property-value
+Set to **true** if enabled, otherwise **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.transcoding/mediatranscoder_mediatranscoder_1221375020.md b/windows.media.transcoding/mediatranscoder_mediatranscoder_1221375020.md
index d92ce60086..294ff15e32 100644
--- a/windows.media.transcoding/mediatranscoder_mediatranscoder_1221375020.md
+++ b/windows.media.transcoding/mediatranscoder_mediatranscoder_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.Transcoding.MediaTranscoder.#ctor
--api-type: winrt method
----
# Windows.Media.Transcoding.MediaTranscoder.MediaTranscoder
## -description
Creates a new instance of the [MediaTranscoder](mediatranscoder.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Transcoding.MediaTranscoder.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.MediaTranscoder
+
+## -description
+Creates a new instance of the [MediaTranscoder](mediatranscoder.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.transcoding/mediatranscoder_preparefiletranscodeasync_704917623.md b/windows.media.transcoding/mediatranscoder_preparefiletranscodeasync_704917623.md
index 0e7e1f8129..b3699fd4c3 100644
--- a/windows.media.transcoding/mediatranscoder_preparefiletranscodeasync_704917623.md
+++ b/windows.media.transcoding/mediatranscoder_preparefiletranscodeasync_704917623.md
@@ -1,3 +1,33 @@
----
-api-id: M:Windows.Media.Transcoding.MediaTranscoder.PrepareFileTranscodeAsync(Windows.Storage.IStorageFile,Windows.Storage.IStorageFile,Windows.Media.MediaProperties.MediaEncodingProfile)
--api-type: winrt method
----
# Windows.Media.Transcoding.MediaTranscoder.PrepareFileTranscodeAsync
## -description
Asynchronously initializes the trancode operation on the specified file and returns a [PrepareTranscodeResult](preparetranscoderesult.md) object which can be used to start the transcode operation.
## -parameters
### -param source
The source file.
### -param destination
The destination file.
### -param profile
The profile to use for the operation.
## -returns
When this method completes, a [PrepareTranscodeResult](preparetranscoderesult.md) object is returned which can be used to start the transcode.
## -remarks
## -examples
## -see-also
[Transcoding media sample (Windows 10)](http://go.microsoft.com/fwlink/p/?LinkId=620569)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Transcoding.MediaTranscoder.PrepareFileTranscodeAsync(Windows.Storage.IStorageFile,Windows.Storage.IStorageFile,Windows.Media.MediaProperties.MediaEncodingProfile)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.PrepareFileTranscodeAsync
+
+## -description
+Asynchronously initializes the trancode operation on the specified file and returns a [PrepareTranscodeResult](preparetranscoderesult.md) object which can be used to start the transcode operation.
+
+## -parameters
+### -param source
+The source file.
+
+### -param destination
+The destination file.
+
+### -param profile
+The profile to use for the operation.
+
+## -returns
+When this method completes, a [PrepareTranscodeResult](preparetranscoderesult.md) object is returned which can be used to start the transcode.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Transcoding media sample (Windows 10)](http://go.microsoft.com/fwlink/p/?LinkId=620569)
\ No newline at end of file
diff --git a/windows.media.transcoding/mediatranscoder_preparemediastreamsourcetranscodeasync_1018386378.md b/windows.media.transcoding/mediatranscoder_preparemediastreamsourcetranscodeasync_1018386378.md
index 80e6e6cda3..8002826779 100644
--- a/windows.media.transcoding/mediatranscoder_preparemediastreamsourcetranscodeasync_1018386378.md
+++ b/windows.media.transcoding/mediatranscoder_preparemediastreamsourcetranscodeasync_1018386378.md
@@ -1,3 +1,32 @@
----
-api-id: M:Windows.Media.Transcoding.MediaTranscoder.PrepareMediaStreamSourceTranscodeAsync(Windows.Media.Core.IMediaSource,Windows.Storage.Streams.IRandomAccessStream,Windows.Media.MediaProperties.MediaEncodingProfile)
--api-type: winrt method
----
# Windows.Media.Transcoding.MediaTranscoder.PrepareMediaStreamSourceTranscodeAsync
## -description
Asynchronously initializes the trancode operation on the specified media source and returns a [PrepareTranscodeResult](preparetranscoderesult.md) object which can be used to start the transcode operation.
## -parameters
### -param source
The media source to perform the transcode operation on.
### -param destination
The destination stream for the transcoded media data.
### -param profile
The profile to use for the operation.
## -returns
When this method completes, a [PrepareTranscodeResult](preparetranscoderesult.md) object is returned which can be used to start the transcode.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Transcoding.MediaTranscoder.PrepareMediaStreamSourceTranscodeAsync(Windows.Media.Core.IMediaSource,Windows.Storage.Streams.IRandomAccessStream,Windows.Media.MediaProperties.MediaEncodingProfile)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.PrepareMediaStreamSourceTranscodeAsync
+
+## -description
+Asynchronously initializes the trancode operation on the specified media source and returns a [PrepareTranscodeResult](preparetranscoderesult.md) object which can be used to start the transcode operation.
+
+## -parameters
+### -param source
+The media source to perform the transcode operation on.
+
+### -param destination
+The destination stream for the transcoded media data.
+
+### -param profile
+The profile to use for the operation.
+
+## -returns
+When this method completes, a [PrepareTranscodeResult](preparetranscoderesult.md) object is returned which can be used to start the transcode.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.transcoding/mediatranscoder_preparestreamtranscodeasync_318469178.md b/windows.media.transcoding/mediatranscoder_preparestreamtranscodeasync_318469178.md
index 69854d5ead..1934b74c34 100644
--- a/windows.media.transcoding/mediatranscoder_preparestreamtranscodeasync_318469178.md
+++ b/windows.media.transcoding/mediatranscoder_preparestreamtranscodeasync_318469178.md
@@ -1,40 +1,40 @@
----
--api-id: M:Windows.Media.Transcoding.MediaTranscoder.PrepareStreamTranscodeAsync(Windows.Storage.Streams.IRandomAccessStream,Windows.Storage.Streams.IRandomAccessStream,Windows.Media.MediaProperties.MediaEncodingProfile)
--api-type: winrt method
----
-
-
-
-# Windows.Media.Transcoding.MediaTranscoder.PrepareStreamTranscodeAsync
-
-## -description
-Asynchronously initializes the trancode operation on the specified stream and returns a [PrepareTranscodeResult](preparetranscoderesult.md) object which can be used to start the transcode operation.
-
-## -parameters
-### -param source
-The source stream.
-
-*source* cannot be a [InMemoryRandomAccessStream](../windows.storage.streams/inmemoryrandomaccessstream.md) or other writeable stream.
-
-### -param destination
-The destination stream.
-
-### -param profile
-The profile to use for the operation.
-
-## -returns
-When this method completes, a [PrepareTranscodeResult](preparetranscoderesult.md) object is returned which can be used to start the transcode.
-
-## -remarks
-The *source* parameter cannot be a [InMemoryRandomAccessStream](../windows.storage.streams/inmemoryrandomaccessstream.md) or other writeable stream.
-
-## -examples
-The following example shows how to use this method to transcode a stream.
-
-
-
-[!code-js[Transcoding_TranscodeStream](../windows.media.transcoding/code/Transcoding/javascript/default.js#SnippetTranscoding_TranscodeStream)]
-
-## -see-also
+---
+-api-id: M:Windows.Media.Transcoding.MediaTranscoder.PrepareStreamTranscodeAsync(Windows.Storage.Streams.IRandomAccessStream,Windows.Storage.Streams.IRandomAccessStream,Windows.Media.MediaProperties.MediaEncodingProfile)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.PrepareStreamTranscodeAsync
+
+## -description
+Asynchronously initializes the trancode operation on the specified stream and returns a [PrepareTranscodeResult](preparetranscoderesult.md) object which can be used to start the transcode operation.
+
+## -parameters
+### -param source
+The source stream.
+
+*source* cannot be a [InMemoryRandomAccessStream](../windows.storage.streams/inmemoryrandomaccessstream.md) or other writeable stream.
+
+### -param destination
+The destination stream.
+
+### -param profile
+The profile to use for the operation.
+
+## -returns
+When this method completes, a [PrepareTranscodeResult](preparetranscoderesult.md) object is returned which can be used to start the transcode.
+
+## -remarks
+The *source* parameter cannot be a [InMemoryRandomAccessStream](../windows.storage.streams/inmemoryrandomaccessstream.md) or other writeable stream.
+
+## -examples
+The following example shows how to use this method to transcode a stream.
+
+
+
+[!code-js[Transcoding_TranscodeStream](../windows.media.transcoding/code/Transcoding/javascript/default.js#SnippetTranscoding_TranscodeStream)]
+
+## -see-also
diff --git a/windows.media.transcoding/mediatranscoder_trimstarttime.md b/windows.media.transcoding/mediatranscoder_trimstarttime.md
index 79ccdb3cb6..8944e53d08 100644
--- a/windows.media.transcoding/mediatranscoder_trimstarttime.md
+++ b/windows.media.transcoding/mediatranscoder_trimstarttime.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Transcoding.MediaTranscoder.TrimStartTime
--api-type: winrt property
----
# Windows.Media.Transcoding.MediaTranscoder.TrimStartTime
## -description
Gets or sets the time interval to trim from the start of the output.
## -property-value
A [TimeSpan](../windows.foundation/timespan.md) structure that contains the time interval.
## -remarks
## -examples
## -see-also
[Transcoding media sample (Windows 10)](http://go.microsoft.com/fwlink/p/?LinkId=620569)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Transcoding.MediaTranscoder.TrimStartTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.TrimStartTime
+
+## -description
+Gets or sets the time interval to trim from the start of the output.
+
+## -property-value
+A [TimeSpan](../windows.foundation/timespan.md) structure that contains the time interval.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Transcoding media sample (Windows 10)](http://go.microsoft.com/fwlink/p/?LinkId=620569)
\ No newline at end of file
diff --git a/windows.media.transcoding/mediatranscoder_trimstoptime.md b/windows.media.transcoding/mediatranscoder_trimstoptime.md
index 34c785cf49..fc0c6fc176 100644
--- a/windows.media.transcoding/mediatranscoder_trimstoptime.md
+++ b/windows.media.transcoding/mediatranscoder_trimstoptime.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.Transcoding.MediaTranscoder.TrimStopTime
--api-type: winrt property
----
# Windows.Media.Transcoding.MediaTranscoder.TrimStopTime
## -description
Gets or sets the time interval to trim from the end of the output.
## -property-value
A [TimeSpan](../windows.foundation/timespan.md) structure that contains the time interval.
## -remarks
## -examples
## -see-also
[Transcoding media sample (Windows 10)](http://go.microsoft.com/fwlink/p/?LinkId=620569)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Transcoding.MediaTranscoder.TrimStopTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.TrimStopTime
+
+## -description
+Gets or sets the time interval to trim from the end of the output.
+
+## -property-value
+A [TimeSpan](../windows.foundation/timespan.md) structure that contains the time interval.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Transcoding media sample (Windows 10)](http://go.microsoft.com/fwlink/p/?LinkId=620569)
\ No newline at end of file
diff --git a/windows.media.transcoding/mediatranscoder_videoprocessingalgorithm.md b/windows.media.transcoding/mediatranscoder_videoprocessingalgorithm.md
index d1a47339bc..4e2c2b795a 100644
--- a/windows.media.transcoding/mediatranscoder_videoprocessingalgorithm.md
+++ b/windows.media.transcoding/mediatranscoder_videoprocessingalgorithm.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Transcoding.MediaTranscoder.VideoProcessingAlgorithm
--api-type: winrt property
----
# Windows.Media.Transcoding.MediaTranscoder.VideoProcessingAlgorithm
## -description
Gets or sets the video processing algorithm which will be used for transcoding.
## -property-value
The video processing algorithm.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Transcoding.MediaTranscoder.VideoProcessingAlgorithm
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Transcoding.MediaTranscoder.VideoProcessingAlgorithm
+
+## -description
+Gets or sets the video processing algorithm which will be used for transcoding.
+
+## -property-value
+The video processing algorithm.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.transcoding/preparetranscoderesult_cantranscode.md b/windows.media.transcoding/preparetranscoderesult_cantranscode.md
index 495596a35e..4ad91482ec 100644
--- a/windows.media.transcoding/preparetranscoderesult_cantranscode.md
+++ b/windows.media.transcoding/preparetranscoderesult_cantranscode.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Transcoding.PrepareTranscodeResult.CanTranscode
--api-type: winrt property
----
# Windows.Media.Transcoding.PrepareTranscodeResult.CanTranscode
## -description
Indicates whether the trancode operation can be performed successfully.
## -property-value
True if the trancode operation can be performed successfully; false otherwise.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Transcoding.PrepareTranscodeResult.CanTranscode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Transcoding.PrepareTranscodeResult.CanTranscode
+
+## -description
+Indicates whether the trancode operation can be performed successfully.
+
+## -property-value
+True if the trancode operation can be performed successfully; false otherwise.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.transcoding/preparetranscoderesult_failurereason.md b/windows.media.transcoding/preparetranscoderesult_failurereason.md
index 6eb56e4e93..4db8b41d1e 100644
--- a/windows.media.transcoding/preparetranscoderesult_failurereason.md
+++ b/windows.media.transcoding/preparetranscoderesult_failurereason.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.Transcoding.PrepareTranscodeResult.FailureReason
--api-type: winrt property
----
# Windows.Media.Transcoding.PrepareTranscodeResult.FailureReason
## -description
Specifies the reason for the transcode failure.
## -property-value
The reason for the transcode failure.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.Transcoding.PrepareTranscodeResult.FailureReason
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.Transcoding.PrepareTranscodeResult.FailureReason
+
+## -description
+Specifies the reason for the transcode failure.
+
+## -property-value
+The reason for the transcode failure.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media.transcoding/preparetranscoderesult_transcodeasync_778418671.md b/windows.media.transcoding/preparetranscoderesult_transcodeasync_778418671.md
index dd863fc372..73ee425247 100644
--- a/windows.media.transcoding/preparetranscoderesult_transcodeasync_778418671.md
+++ b/windows.media.transcoding/preparetranscoderesult_transcodeasync_778418671.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.Transcoding.PrepareTranscodeResult.TranscodeAsync
--api-type: winrt method
----
# Windows.Media.Transcoding.PrepareTranscodeResult.TranscodeAsync
## -description
Creates an object to perform an asynchronous media transcode operation on media data.
## -returns
An object that is used to control the asynchronous operation.
## -remarks
## -examples
## -see-also
[Transcoding media sample (Windows 10)](http://go.microsoft.com/fwlink/p/?LinkId=620569)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.Transcoding.PrepareTranscodeResult.TranscodeAsync
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.Transcoding.PrepareTranscodeResult.TranscodeAsync
+
+## -description
+Creates an object to perform an asynchronous media transcode operation on media data.
+
+## -returns
+An object that is used to control the asynchronous operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Transcoding media sample (Windows 10)](http://go.microsoft.com/fwlink/p/?LinkId=620569)
\ No newline at end of file
diff --git a/windows.media/audiobuffer.md b/windows.media/audiobuffer.md
index 2d043465b0..a8d7b6b0b3 100644
--- a/windows.media/audiobuffer.md
+++ b/windows.media/audiobuffer.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.AudioBuffer
--api-type: winrt class
----
# Windows.Media.AudioBuffer
## -description
Represents a buffer containing audio data.
## -remarks
Get an instance of this class by calling [AudioFrame::LockBuffer](audioframe_lockbuffer.md).
## -examples
## -see-also
[IClosableBuffer](../windows.storage.streams/iclosablebuffer.md), [IClosable](../windows.foundation/iclosable.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.AudioBuffer
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.AudioBuffer
+
+## -description
+Represents a buffer containing audio data.
+
+## -remarks
+Get an instance of this class by calling [AudioFrame::LockBuffer](audioframe_lockbuffer.md).
+
+## -examples
+
+## -see-also
+[IClosableBuffer](../windows.storage.streams/iclosablebuffer.md), [IClosable](../windows.foundation/iclosable.md)
\ No newline at end of file
diff --git a/windows.media/audiobuffer_capacity.md b/windows.media/audiobuffer_capacity.md
index 32684cc538..0c36f6cce8 100644
--- a/windows.media/audiobuffer_capacity.md
+++ b/windows.media/audiobuffer_capacity.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.AudioBuffer.Capacity
--api-type: winrt property
----
# Windows.Media.AudioBuffer.Capacity
## -description
Gets the maximum number of bytes that the buffer can hold.
## -property-value
The maximum number of bytes that the buffer can hold.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.AudioBuffer.Capacity
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.AudioBuffer.Capacity
+
+## -description
+Gets the maximum number of bytes that the buffer can hold.
+
+## -property-value
+The maximum number of bytes that the buffer can hold.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audiobuffer_close_811482585.md b/windows.media/audiobuffer_close_811482585.md
index 143eba9902..dc89a9728f 100644
--- a/windows.media/audiobuffer_close_811482585.md
+++ b/windows.media/audiobuffer_close_811482585.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.AudioBuffer.Close
--api-type: winrt method
----
# Windows.Media.AudioBuffer.Close
## -description
Disposes of the object and associated resources.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.AudioBuffer.Close
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.AudioBuffer.Close
+
+## -description
+Disposes of the object and associated resources.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audiobuffer_createreference_431808572.md b/windows.media/audiobuffer_createreference_431808572.md
index 908eca17dd..81d112e0c2 100644
--- a/windows.media/audiobuffer_createreference_431808572.md
+++ b/windows.media/audiobuffer_createreference_431808572.md
@@ -1,3 +1,22 @@
----
-api-id: M:Windows.Media.AudioBuffer.CreateReference
--api-type: winrt method
----
# Windows.Media.AudioBuffer.CreateReference
## -description
Returns an [IMemoryBufferReference](../windows.foundation/imemorybufferreference.md) representation of the audio buffer.
## -returns
The [IMemoryBufferReference](../windows.foundation/imemorybufferreference.md) representation of the audio buffer.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.AudioBuffer.CreateReference
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.AudioBuffer.CreateReference
+
+## -description
+Returns an [IMemoryBufferReference](../windows.foundation/imemorybufferreference.md) representation of the audio buffer.
+
+## -returns
+The [IMemoryBufferReference](../windows.foundation/imemorybufferreference.md) representation of the audio buffer.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audiobuffer_length.md b/windows.media/audiobuffer_length.md
index 1cdbf241e4..5f6c2fdc15 100644
--- a/windows.media/audiobuffer_length.md
+++ b/windows.media/audiobuffer_length.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.AudioBuffer.Length
--api-type: winrt property
----
# Windows.Media.AudioBuffer.Length
## -description
Gets or sets the number of bytes currently in use in the buffer.
## -property-value
The number of bytes currently in use in the buffer.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.AudioBuffer.Length
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.AudioBuffer.Length
+
+## -description
+Gets or sets the number of bytes currently in use in the buffer.
+
+## -property-value
+The number of bytes currently in use in the buffer.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audioframe.md b/windows.media/audioframe.md
index 230ec18cd9..cbbdbdd83c 100644
--- a/windows.media/audioframe.md
+++ b/windows.media/audioframe.md
@@ -1,3 +1,21 @@
----
-api-id: T:Windows.Media.AudioFrame
--api-type: winrt class
----
# Windows.Media.AudioFrame
## -description
Represents a single frame of audio data.
## -remarks
An audio frame typically contains multiple audio samples. Access the audio data by calling [LockBuffer](audioframe_lockbuffer.md) which returns an [AudioBuffer](audiobuffer.md).
## -examples
## -see-also
[IMediaFrame](imediaframe.md), [IClosable](../windows.foundation/iclosable.md), [AudioBuffer](audiobuffer.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.AudioFrame
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.AudioFrame
+
+## -description
+Represents a single frame of audio data.
+
+## -remarks
+An audio frame typically contains multiple audio samples. Access the audio data by calling [LockBuffer](audioframe_lockbuffer.md) which returns an [AudioBuffer](audiobuffer.md).
+
+## -examples
+
+## -see-also
+[IMediaFrame](imediaframe.md), [IClosable](../windows.foundation/iclosable.md), [AudioBuffer](audiobuffer.md)
\ No newline at end of file
diff --git a/windows.media/audioframe_audioframe_885572907.md b/windows.media/audioframe_audioframe_885572907.md
index 7de7ed5323..aed8cc69db 100644
--- a/windows.media/audioframe_audioframe_885572907.md
+++ b/windows.media/audioframe_audioframe_885572907.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.AudioFrame.#ctor(System.UInt32)
--api-type: winrt method
----
# Windows.Media.AudioFrame.AudioFrame
## -description
Initializes a new instance of the [AudioFrame](audioframe.md) class.
## -parameters
### -param capacity
The maximum number of bytes that the buffer can hold.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.AudioFrame.#ctor(System.UInt32)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.AudioFrame.AudioFrame
+
+## -description
+Initializes a new instance of the [AudioFrame](audioframe.md) class.
+
+## -parameters
+### -param capacity
+The maximum number of bytes that the buffer can hold.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audioframe_close_811482585.md b/windows.media/audioframe_close_811482585.md
index cdc2ce47d7..e2a0caf83f 100644
--- a/windows.media/audioframe_close_811482585.md
+++ b/windows.media/audioframe_close_811482585.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.AudioFrame.Close
--api-type: winrt method
----
# Windows.Media.AudioFrame.Close
## -description
Disposes of the object and associated resources.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.AudioFrame.Close
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.AudioFrame.Close
+
+## -description
+Disposes of the object and associated resources.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audioframe_duration.md b/windows.media/audioframe_duration.md
index 1c78cc8f1c..bbcb05943f 100644
--- a/windows.media/audioframe_duration.md
+++ b/windows.media/audioframe_duration.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.AudioFrame.Duration
--api-type: winrt property
----
# Windows.Media.AudioFrame.Duration
## -description
Gets or sets the duration of the audio frame.
## -property-value
The duration of the audio frame.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.AudioFrame.Duration
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.AudioFrame.Duration
+
+## -description
+Gets or sets the duration of the audio frame.
+
+## -property-value
+The duration of the audio frame.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audioframe_extendedproperties.md b/windows.media/audioframe_extendedproperties.md
index 24c55345c3..b74a6ac1ba 100644
--- a/windows.media/audioframe_extendedproperties.md
+++ b/windows.media/audioframe_extendedproperties.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.AudioFrame.ExtendedProperties
--api-type: winrt property
----
# Windows.Media.AudioFrame.ExtendedProperties
## -description
Gets the extended property set which enables getting and setting properties on the [AudioFrame](audioframe.md).
## -property-value
The extended properties map.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.AudioFrame.ExtendedProperties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.AudioFrame.ExtendedProperties
+
+## -description
+Gets the extended property set which enables getting and setting properties on the [AudioFrame](audioframe.md).
+
+## -property-value
+The extended properties map.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audioframe_isdiscontinuous.md b/windows.media/audioframe_isdiscontinuous.md
index 9fc3ded12b..5bea4e9e85 100644
--- a/windows.media/audioframe_isdiscontinuous.md
+++ b/windows.media/audioframe_isdiscontinuous.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.AudioFrame.IsDiscontinuous
--api-type: winrt property
----
# Windows.Media.AudioFrame.IsDiscontinuous
## -description
Gets or sets a value that indicates whether an audio frame is the first frame after a gap in the stream.
## -property-value
True if the audio frame is the first frame after a gap in the stream; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.AudioFrame.IsDiscontinuous
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.AudioFrame.IsDiscontinuous
+
+## -description
+Gets or sets a value that indicates whether an audio frame is the first frame after a gap in the stream.
+
+## -property-value
+True if the audio frame is the first frame after a gap in the stream; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audioframe_isreadonly.md b/windows.media/audioframe_isreadonly.md
index 3a4cb165bc..71eff42a7c 100644
--- a/windows.media/audioframe_isreadonly.md
+++ b/windows.media/audioframe_isreadonly.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.AudioFrame.IsReadOnly
--api-type: winrt property
----
# Windows.Media.AudioFrame.IsReadOnly
## -description
Gets a value indicating whether the audio frame is read-only.
## -property-value
True if the audio frame is read-only; otherwise, false.
## -remarks
When this value is true, both the audio data and the mutable properties of the audio frame are read-only.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.AudioFrame.IsReadOnly
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.AudioFrame.IsReadOnly
+
+## -description
+Gets a value indicating whether the audio frame is read-only.
+
+## -property-value
+True if the audio frame is read-only; otherwise, false.
+
+## -remarks
+When this value is true, both the audio data and the mutable properties of the audio frame are read-only.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audioframe_lockbuffer_1248676457.md b/windows.media/audioframe_lockbuffer_1248676457.md
index ecf17b475c..008166486c 100644
--- a/windows.media/audioframe_lockbuffer_1248676457.md
+++ b/windows.media/audioframe_lockbuffer_1248676457.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Media.AudioFrame.LockBuffer(Windows.Media.AudioBufferAccessMode)
--api-type: winrt method
----
# Windows.Media.AudioFrame.LockBuffer
## -description
Gets a [AudioBuffer](audiobuffer.md) object that allows you to operate directly on the software bitmap's pixel data.
## -parameters
### -param mode
A value indicating the access mode of the returned audio buffer.
## -returns
The buffer containing pixel data.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.AudioFrame.LockBuffer(Windows.Media.AudioBufferAccessMode)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.AudioFrame.LockBuffer
+
+## -description
+Gets a [AudioBuffer](audiobuffer.md) object that allows you to operate directly on the software bitmap's pixel data.
+
+## -parameters
+### -param mode
+A value indicating the access mode of the returned audio buffer.
+
+## -returns
+The buffer containing pixel data.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audioframe_relativetime.md b/windows.media/audioframe_relativetime.md
index 3405496f04..55c45e9091 100644
--- a/windows.media/audioframe_relativetime.md
+++ b/windows.media/audioframe_relativetime.md
@@ -1,3 +1,24 @@
----
-api-id: P:Windows.Media.AudioFrame.RelativeTime
--api-type: winrt property
----
# Windows.Media.AudioFrame.RelativeTime
## -description
Gets or sets the relative time of the frame within the audio stream.
## -property-value
The relative time of the frame within the audio stream.
## -remarks
Use [SystemRelativeTime](audioframe_systemrelativetime.md) to get a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
## -examples
## -see-also
[SystemRelativeTime](audioframe_systemrelativetime.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.AudioFrame.RelativeTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.AudioFrame.RelativeTime
+
+## -description
+Gets or sets the relative time of the frame within the audio stream.
+
+## -property-value
+The relative time of the frame within the audio stream.
+
+## -remarks
+Use [SystemRelativeTime](audioframe_systemrelativetime.md) to get a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
+
+## -examples
+
+## -see-also
+[SystemRelativeTime](audioframe_systemrelativetime.md)
\ No newline at end of file
diff --git a/windows.media/audioframe_systemrelativetime.md b/windows.media/audioframe_systemrelativetime.md
index 680eef379d..e4e26c6bfa 100644
--- a/windows.media/audioframe_systemrelativetime.md
+++ b/windows.media/audioframe_systemrelativetime.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.AudioFrame.SystemRelativeTime
--api-type: winrt property
----
# Windows.Media.AudioFrame.SystemRelativeTime
## -description
Gets or sets a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
## -property-value
A timestamp relative to the system.
## -remarks
Use [RelativeTime](audioframe_relativetime.md) to get a timestamp that is relative to the audio stream.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.AudioFrame.SystemRelativeTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.AudioFrame.SystemRelativeTime
+
+## -description
+Gets or sets a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
+
+## -property-value
+A timestamp relative to the system.
+
+## -remarks
+Use [RelativeTime](audioframe_relativetime.md) to get a timestamp that is relative to the audio stream.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/audioframe_type.md b/windows.media/audioframe_type.md
index 3f796eaa5e..713a08a58e 100644
--- a/windows.media/audioframe_type.md
+++ b/windows.media/audioframe_type.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.AudioFrame.Type
--api-type: winrt property
----
# Windows.Media.AudioFrame.Type
## -description
Gets a string indicating the type of audio data the audio frame contains.
## -property-value
A string indicating the type of audio data the audio frame contains.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.AudioFrame.Type
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.AudioFrame.Type
+
+## -description
+Gets a string indicating the type of audio data the audio frame contains.
+
+## -property-value
+A string indicating the type of audio data the audio frame contains.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/autorepeatmodechangerequestedeventargs.md b/windows.media/autorepeatmodechangerequestedeventargs.md
index 4f8ca5f222..922b9fa13b 100644
--- a/windows.media/autorepeatmodechangerequestedeventargs.md
+++ b/windows.media/autorepeatmodechangerequestedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.AutoRepeatModeChangeRequestedEventArgs
--api-type: winrt class
----
# Windows.Media.AutoRepeatModeChangeRequestedEventArgs
## -description
Provides data for the [AutoRepeatModeChangeRequested](systemmediatransportcontrols_autorepeatmodechangerequested.md) event.
## -remarks
Get an instance of this class by handling the [AutoRepeatModeChangeRequested](systemmediatransportcontrols_autorepeatmodechangerequested.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.AutoRepeatModeChangeRequestedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.AutoRepeatModeChangeRequestedEventArgs
+
+## -description
+Provides data for the [AutoRepeatModeChangeRequested](systemmediatransportcontrols_autorepeatmodechangerequested.md) event.
+
+## -remarks
+Get an instance of this class by handling the [AutoRepeatModeChangeRequested](systemmediatransportcontrols_autorepeatmodechangerequested.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/autorepeatmodechangerequestedeventargs_requestedautorepeatmode.md b/windows.media/autorepeatmodechangerequestedeventargs_requestedautorepeatmode.md
index f29e20353f..3a0481d8e1 100644
--- a/windows.media/autorepeatmodechangerequestedeventargs_requestedautorepeatmode.md
+++ b/windows.media/autorepeatmodechangerequestedeventargs_requestedautorepeatmode.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.AutoRepeatModeChangeRequestedEventArgs.RequestedAutoRepeatMode
--api-type: winrt property
----
# Windows.Media.AutoRepeatModeChangeRequestedEventArgs.RequestedAutoRepeatMode
## -description
Gets a value indicating the requested auto-repeat mode.
## -property-value
The requested auto-repeat mode.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.AutoRepeatModeChangeRequestedEventArgs.RequestedAutoRepeatMode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.AutoRepeatModeChangeRequestedEventArgs.RequestedAutoRepeatMode
+
+## -description
+Gets a value indicating the requested auto-repeat mode.
+
+## -property-value
+The requested auto-repeat mode.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imagedisplayproperties.md b/windows.media/imagedisplayproperties.md
index 88e55d6594..7629bc9321 100644
--- a/windows.media/imagedisplayproperties.md
+++ b/windows.media/imagedisplayproperties.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.ImageDisplayProperties
--api-type: winrt class
----
# Windows.Media.ImageDisplayProperties
## -description
Provides properties for image information that is displayed by [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md) class.
## -remarks
## -examples
## -see-also
[SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.ImageDisplayProperties
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.ImageDisplayProperties
+
+## -description
+Provides properties for image information that is displayed by [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md)
\ No newline at end of file
diff --git a/windows.media/imagedisplayproperties_subtitle.md b/windows.media/imagedisplayproperties_subtitle.md
index d589f49865..86bfbf4920 100644
--- a/windows.media/imagedisplayproperties_subtitle.md
+++ b/windows.media/imagedisplayproperties_subtitle.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.ImageDisplayProperties.Subtitle
--api-type: winrt property
----
# Windows.Media.ImageDisplayProperties.Subtitle
## -description
Gets or sets the subtitle of the image.
## -property-value
The subtitle of the image.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.ImageDisplayProperties.Subtitle
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.ImageDisplayProperties.Subtitle
+
+## -description
+Gets or sets the subtitle of the image.
+
+## -property-value
+The subtitle of the image.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imagedisplayproperties_title.md b/windows.media/imagedisplayproperties_title.md
index bf5d779512..da268f5d65 100644
--- a/windows.media/imagedisplayproperties_title.md
+++ b/windows.media/imagedisplayproperties_title.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.ImageDisplayProperties.Title
--api-type: winrt property
----
# Windows.Media.ImageDisplayProperties.Title
## -description
Gets or sets the title of the image.
## -property-value
The title of the image.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.ImageDisplayProperties.Title
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.ImageDisplayProperties.Title
+
+## -description
+Gets or sets the title of the image.
+
+## -property-value
+The title of the image.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediaextension_setproperties.md b/windows.media/imediaextension_setproperties.md
index a536cc3a9d..aac409f3e5 100644
--- a/windows.media/imediaextension_setproperties.md
+++ b/windows.media/imediaextension_setproperties.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.IMediaExtension.SetProperties(Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.IMediaExtension.SetProperties
## -description
Sets the configuration properties that were supplied when the media parser or codec was registered.
## -parameters
### -param configuration
The configuration properties for the media parser or codec.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.IMediaExtension.SetProperties(Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.IMediaExtension.SetProperties
+
+## -description
+Sets the configuration properties that were supplied when the media parser or codec was registered.
+
+## -parameters
+### -param configuration
+The configuration properties for the media parser or codec.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediaframe_duration.md b/windows.media/imediaframe_duration.md
index f3014a30aa..623aa03244 100644
--- a/windows.media/imediaframe_duration.md
+++ b/windows.media/imediaframe_duration.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.IMediaFrame.Duration
--api-type: winrt property
----
# Windows.Media.IMediaFrame.Duration
## -description
Gets or sets the duration of the media frame.
## -property-value
The duration of the media frame.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaFrame.Duration
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaFrame.Duration
+
+## -description
+Gets or sets the duration of the media frame.
+
+## -property-value
+The duration of the media frame.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediaframe_extendedproperties.md b/windows.media/imediaframe_extendedproperties.md
index 9c743ac164..974bccdf33 100644
--- a/windows.media/imediaframe_extendedproperties.md
+++ b/windows.media/imediaframe_extendedproperties.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.IMediaFrame.ExtendedProperties
--api-type: winrt property
----
# Windows.Media.IMediaFrame.ExtendedProperties
## -description
Gets the extended property set which enables getting and setting properties on the media frame.
## -property-value
The extended properties map.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaFrame.ExtendedProperties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaFrame.ExtendedProperties
+
+## -description
+Gets the extended property set which enables getting and setting properties on the media frame.
+
+## -property-value
+The extended properties map.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediaframe_isdiscontinuous.md b/windows.media/imediaframe_isdiscontinuous.md
index 9f4d786d76..5a565a5a2a 100644
--- a/windows.media/imediaframe_isdiscontinuous.md
+++ b/windows.media/imediaframe_isdiscontinuous.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.IMediaFrame.IsDiscontinuous
--api-type: winrt property
----
# Windows.Media.IMediaFrame.IsDiscontinuous
## -description
Gets or sets a value that indicates whether an media frame is the first frame after a gap in the stream.
## -property-value
True if the media frame is the first frame after a gap in the stream; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaFrame.IsDiscontinuous
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaFrame.IsDiscontinuous
+
+## -description
+Gets or sets a value that indicates whether an media frame is the first frame after a gap in the stream.
+
+## -property-value
+True if the media frame is the first frame after a gap in the stream; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediaframe_isreadonly.md b/windows.media/imediaframe_isreadonly.md
index adb46708a4..95544500c6 100644
--- a/windows.media/imediaframe_isreadonly.md
+++ b/windows.media/imediaframe_isreadonly.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.IMediaFrame.IsReadOnly
--api-type: winrt property
----
# Windows.Media.IMediaFrame.IsReadOnly
## -description
Gets a value indicating whether the audio frame is read-only.
## -property-value
True if the audio frame is read-only; otherwise, false.
## -remarks
When this value is true, both the data payload and the mutable properties of the media frame are read-only.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaFrame.IsReadOnly
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaFrame.IsReadOnly
+
+## -description
+Gets a value indicating whether the audio frame is read-only.
+
+## -property-value
+True if the audio frame is read-only; otherwise, false.
+
+## -remarks
+When this value is true, both the data payload and the mutable properties of the media frame are read-only.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediaframe_relativetime.md b/windows.media/imediaframe_relativetime.md
index 6ac366767f..d6845217ce 100644
--- a/windows.media/imediaframe_relativetime.md
+++ b/windows.media/imediaframe_relativetime.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.IMediaFrame.RelativeTime
--api-type: winrt property
----
# Windows.Media.IMediaFrame.RelativeTime
## -description
Gets or sets the relative time of the frame within the media stream.
## -property-value
The relative time of the frame within the media stream.
## -remarks
Use [SystemRelativeTime](imediaframe_systemrelativetime.md) to get a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaFrame.RelativeTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaFrame.RelativeTime
+
+## -description
+Gets or sets the relative time of the frame within the media stream.
+
+## -property-value
+The relative time of the frame within the media stream.
+
+## -remarks
+Use [SystemRelativeTime](imediaframe_systemrelativetime.md) to get a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediaframe_systemrelativetime.md b/windows.media/imediaframe_systemrelativetime.md
index ad5ce0fc9c..091c2e8f83 100644
--- a/windows.media/imediaframe_systemrelativetime.md
+++ b/windows.media/imediaframe_systemrelativetime.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.IMediaFrame.SystemRelativeTime
--api-type: winrt property
----
# Windows.Media.IMediaFrame.SystemRelativeTime
## -description
Gets or sets a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
## -property-value
A timestamp relative to the system.
## -remarks
Use [RelativeTime](imediaframe_relativetime.md) to get a timestamp that is relative to the media stream.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaFrame.SystemRelativeTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaFrame.SystemRelativeTime
+
+## -description
+Gets or sets a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
+
+## -property-value
+A timestamp relative to the system.
+
+## -remarks
+Use [RelativeTime](imediaframe_relativetime.md) to get a timestamp that is relative to the media stream.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediaframe_type.md b/windows.media/imediaframe_type.md
index e7e0b63e82..1eff1eabc7 100644
--- a/windows.media/imediaframe_type.md
+++ b/windows.media/imediaframe_type.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.IMediaFrame.Type
--api-type: winrt property
----
# Windows.Media.IMediaFrame.Type
## -description
Gets a string indicating the type of data the media frame contains.
## -property-value
A string indicating the type of data the media frame contains.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaFrame.Type
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaFrame.Type
+
+## -description
+Gets a string indicating the type of data the media frame contains.
+
+## -property-value
+A string indicating the type of data the media frame contains.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediamarker_mediamarkertype.md b/windows.media/imediamarker_mediamarkertype.md
index e8297a8878..2b8c65d155 100644
--- a/windows.media/imediamarker_mediamarkertype.md
+++ b/windows.media/imediamarker_mediamarkertype.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.IMediaMarker.MediaMarkerType
--api-type: winrt property
----
# Windows.Media.IMediaMarker.MediaMarkerType
## -description
Gets the type of the media marker.
## -property-value
The marker type.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaMarker.MediaMarkerType
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaMarker.MediaMarkerType
+
+## -description
+Gets the type of the media marker.
+
+## -property-value
+The marker type.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediamarker_text.md b/windows.media/imediamarker_text.md
index 9b646dbdde..8bf3f2a931 100644
--- a/windows.media/imediamarker_text.md
+++ b/windows.media/imediamarker_text.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.IMediaMarker.Text
--api-type: winrt property
----
# Windows.Media.IMediaMarker.Text
## -description
Gets the text associated with the marker.
## -property-value
The text associated with the marker.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaMarker.Text
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaMarker.Text
+
+## -description
+Gets the text associated with the marker.
+
+## -property-value
+The text associated with the marker.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediamarker_time.md b/windows.media/imediamarker_time.md
index acda5438ab..80d5bfbc95 100644
--- a/windows.media/imediamarker_time.md
+++ b/windows.media/imediamarker_time.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.IMediaMarker.Time
--api-type: winrt property
----
# Windows.Media.IMediaMarker.Time
## -description
Gets the offset in the media time-line that the marker occurs.
## -property-value
The offset in the media time-line that the marker occurs.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaMarker.Time
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaMarker.Time
+
+## -description
+Gets the offset in the media time-line that the marker occurs.
+
+## -property-value
+The offset in the media time-line that the marker occurs.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/imediamarkers_markers.md b/windows.media/imediamarkers_markers.md
index 19a95e50dd..e844231fa2 100644
--- a/windows.media/imediamarkers_markers.md
+++ b/windows.media/imediamarkers_markers.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.IMediaMarkers.Markers
--api-type: winrt property
----
# Windows.Media.IMediaMarkers.Markers
## -description
Gets the collection of media markers.
## -property-value
The collection of media markers.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.IMediaMarkers.Markers
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.IMediaMarkers.Markers
+
+## -description
+Gets the collection of media markers.
+
+## -property-value
+The collection of media markers.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediacontrol_albumart.md b/windows.media/mediacontrol_albumart.md
index 96fdae6123..cbbe6d3b73 100644
--- a/windows.media/mediacontrol_albumart.md
+++ b/windows.media/mediacontrol_albumart.md
@@ -1,3 +1,26 @@
----
-api-id: P:Windows.Media.MediaControl.AlbumArt
--api-type: winrt property
----
# Windows.Media.MediaControl.AlbumArt
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Gets or sets the path to the artwork for the album cover.
## -property-value
Path to the artwork for the album cover.
## -remarks
If you provide an invalid path for the album art property, it will cause an exception to be thrown. The only valid URI formats are ms-appx:// and ms-appdata://.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaControl.AlbumArt
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaControl.AlbumArt
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Gets or sets the path to the artwork for the album cover.
+
+## -property-value
+Path to the artwork for the album cover.
+
+## -remarks
+If you provide an invalid path for the album art property, it will cause an exception to be thrown. The only valid URI formats are ms-appx:// and ms-appdata://.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediacontrol_artistname.md b/windows.media/mediacontrol_artistname.md
index 5dd97fddd5..0319dff1d5 100644
--- a/windows.media/mediacontrol_artistname.md
+++ b/windows.media/mediacontrol_artistname.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Media.MediaControl.ArtistName
--api-type: winrt property
----
# Windows.Media.MediaControl.ArtistName
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Gets or sets the name of the artist.
## -property-value
The name of the artist.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaControl.ArtistName
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaControl.ArtistName
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Gets or sets the name of the artist.
+
+## -property-value
+The name of the artist.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediacontrol_channeldownpressed.md b/windows.media/mediacontrol_channeldownpressed.md
index 8df5514351..677e45454e 100644
--- a/windows.media/mediacontrol_channeldownpressed.md
+++ b/windows.media/mediacontrol_channeldownpressed.md
@@ -1,3 +1,22 @@
----
-api-id: E:Windows.Media.MediaControl.ChannelDownPressed
--api-type: winrt event
----
# Windows.Media.MediaControl.ChannelDownPressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **ChannelDown** command is issued to the application.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.ChannelDownPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.ChannelDownPressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **ChannelDown** command is issued to the application.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediacontrol_channeluppressed.md b/windows.media/mediacontrol_channeluppressed.md
index d1470269b1..41c29dad3b 100644
--- a/windows.media/mediacontrol_channeluppressed.md
+++ b/windows.media/mediacontrol_channeluppressed.md
@@ -1,3 +1,22 @@
----
-api-id: E:Windows.Media.MediaControl.ChannelUpPressed
--api-type: winrt event
----
# Windows.Media.MediaControl.ChannelUpPressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **ChannelUp** command is issued to the application.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.ChannelUpPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.ChannelUpPressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **ChannelUp** command is issued to the application.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediacontrol_fastforwardpressed.md b/windows.media/mediacontrol_fastforwardpressed.md
index a00ebfa770..fedf9b1a5a 100644
--- a/windows.media/mediacontrol_fastforwardpressed.md
+++ b/windows.media/mediacontrol_fastforwardpressed.md
@@ -1,3 +1,22 @@
----
-api-id: E:Windows.Media.MediaControl.FastForwardPressed
--api-type: winrt event
----
# Windows.Media.MediaControl.FastForwardPressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **FastForward** command is issued to the application.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.FastForwardPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.FastForwardPressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **FastForward** command is issued to the application.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediacontrol_isplaying.md b/windows.media/mediacontrol_isplaying.md
index 7f71b9dd50..93d10604a6 100644
--- a/windows.media/mediacontrol_isplaying.md
+++ b/windows.media/mediacontrol_isplaying.md
@@ -1,3 +1,27 @@
----
-api-id: P:Windows.Media.MediaControl.IsPlaying
--api-type: winrt property
----
# Windows.Media.MediaControl.IsPlaying
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Gets or sets the state of the Play button.
## -property-value
The state of the Play button.
## -remarks
**IsPlaying** is a Boolean value that indicates the state of the Play button. You can retrieve or set this value. You can also use the current value to make programmatic decisions about the behavior of the app.
## -examples
## -see-also
[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaControl.IsPlaying
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaControl.IsPlaying
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Gets or sets the state of the Play button.
+
+## -property-value
+The state of the Play button.
+
+## -remarks
+**IsPlaying** is a Boolean value that indicates the state of the Play button. You can retrieve or set this value. You can also use the current value to make programmatic decisions about the behavior of the app.
+
+## -examples
+
+## -see-also
+[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
diff --git a/windows.media/mediacontrol_nexttrackpressed.md b/windows.media/mediacontrol_nexttrackpressed.md
index 3b89a49826..4391f9990c 100644
--- a/windows.media/mediacontrol_nexttrackpressed.md
+++ b/windows.media/mediacontrol_nexttrackpressed.md
@@ -1,3 +1,24 @@
----
-api-id: E:Windows.Media.MediaControl.NextTrackPressed
--api-type: winrt event
----
# Windows.Media.MediaControl.NextTrackPressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **NextTrack** command is issued to the application.
## -remarks
## -examples
## -see-also
[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.NextTrackPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.NextTrackPressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **NextTrack** command is issued to the application.
+
+## -remarks
+
+
+## -examples
+
+## -see-also
+[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
diff --git a/windows.media/mediacontrol_pausepressed.md b/windows.media/mediacontrol_pausepressed.md
index b4634487a6..4937e2858b 100644
--- a/windows.media/mediacontrol_pausepressed.md
+++ b/windows.media/mediacontrol_pausepressed.md
@@ -1,3 +1,24 @@
----
-api-id: E:Windows.Media.MediaControl.PausePressed
--api-type: winrt event
----
# Windows.Media.MediaControl.PausePressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **Pause** command is issued to the application.
## -remarks
## -examples
## -see-also
[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.PausePressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.PausePressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **Pause** command is issued to the application.
+
+## -remarks
+
+
+## -examples
+
+## -see-also
+[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
diff --git a/windows.media/mediacontrol_playpausetogglepressed.md b/windows.media/mediacontrol_playpausetogglepressed.md
index a795e1a881..55cf84583c 100644
--- a/windows.media/mediacontrol_playpausetogglepressed.md
+++ b/windows.media/mediacontrol_playpausetogglepressed.md
@@ -1,3 +1,24 @@
----
-api-id: E:Windows.Media.MediaControl.PlayPauseTogglePressed
--api-type: winrt event
----
# Windows.Media.MediaControl.PlayPauseTogglePressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **PlayPauseToggle** command is issued to the application.
## -remarks
## -examples
## -see-also
[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.PlayPauseTogglePressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.PlayPauseTogglePressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **PlayPauseToggle** command is issued to the application.
+
+## -remarks
+
+
+## -examples
+
+## -see-also
+[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
diff --git a/windows.media/mediacontrol_playpressed.md b/windows.media/mediacontrol_playpressed.md
index 6b78f49b3c..d5182422db 100644
--- a/windows.media/mediacontrol_playpressed.md
+++ b/windows.media/mediacontrol_playpressed.md
@@ -1,3 +1,24 @@
----
-api-id: E:Windows.Media.MediaControl.PlayPressed
--api-type: winrt event
----
# Windows.Media.MediaControl.PlayPressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **Play** command is issued to the application.
## -remarks
## -examples
## -see-also
[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.PlayPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.PlayPressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **Play** command is issued to the application.
+
+## -remarks
+
+
+## -examples
+
+## -see-also
+[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
diff --git a/windows.media/mediacontrol_previoustrackpressed.md b/windows.media/mediacontrol_previoustrackpressed.md
index d3015bedf7..b0f79e53c4 100644
--- a/windows.media/mediacontrol_previoustrackpressed.md
+++ b/windows.media/mediacontrol_previoustrackpressed.md
@@ -1,3 +1,24 @@
----
-api-id: E:Windows.Media.MediaControl.PreviousTrackPressed
--api-type: winrt event
----
# Windows.Media.MediaControl.PreviousTrackPressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **PreviousTrack** command is issued to the application.
## -remarks
## -examples
## -see-also
[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.PreviousTrackPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.PreviousTrackPressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **PreviousTrack** command is issued to the application.
+
+## -remarks
+
+
+## -examples
+
+## -see-also
+[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
diff --git a/windows.media/mediacontrol_recordpressed.md b/windows.media/mediacontrol_recordpressed.md
index 785d2d565e..4af6109710 100644
--- a/windows.media/mediacontrol_recordpressed.md
+++ b/windows.media/mediacontrol_recordpressed.md
@@ -1,3 +1,22 @@
----
-api-id: E:Windows.Media.MediaControl.RecordPressed
--api-type: winrt event
----
# Windows.Media.MediaControl.RecordPressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **Record** command is issued to the application.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.RecordPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.RecordPressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **Record** command is issued to the application.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediacontrol_rewindpressed.md b/windows.media/mediacontrol_rewindpressed.md
index 6f3c443131..9e5163d7ae 100644
--- a/windows.media/mediacontrol_rewindpressed.md
+++ b/windows.media/mediacontrol_rewindpressed.md
@@ -1,3 +1,22 @@
----
-api-id: E:Windows.Media.MediaControl.RewindPressed
--api-type: winrt event
----
# Windows.Media.MediaControl.RewindPressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **Rewind** command is issued to the application.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.RewindPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.RewindPressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **Rewind** command is issued to the application.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediacontrol_soundlevel.md b/windows.media/mediacontrol_soundlevel.md
index 9670e7579b..dfa045fe19 100644
--- a/windows.media/mediacontrol_soundlevel.md
+++ b/windows.media/mediacontrol_soundlevel.md
@@ -1,3 +1,27 @@
----
-api-id: P:Windows.Media.MediaControl.SoundLevel
--api-type: winrt property
----
# Windows.Media.MediaControl.SoundLevel
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Gets the current sound level.
## -property-value
The current sound level.
## -remarks
Note that the sound level of an application is tied to the state of its render streams only, and not to the states of its capture or loopback streams.
## -examples
## -see-also
[SoundLevel enumeration](soundlevel.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaControl.SoundLevel
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaControl.SoundLevel
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Gets the current sound level.
+
+## -property-value
+The current sound level.
+
+## -remarks
+Note that the sound level of an application is tied to the state of its render streams only, and not to the states of its capture or loopback streams.
+
+## -examples
+
+## -see-also
+[SoundLevel enumeration](soundlevel.md)
\ No newline at end of file
diff --git a/windows.media/mediacontrol_soundlevelchanged.md b/windows.media/mediacontrol_soundlevelchanged.md
index 388bdc5887..1795e3682d 100644
--- a/windows.media/mediacontrol_soundlevelchanged.md
+++ b/windows.media/mediacontrol_soundlevelchanged.md
@@ -1,3 +1,24 @@
----
-api-id: E:Windows.Media.MediaControl.SoundLevelChanged
--api-type: winrt event
----
# Windows.Media.MediaControl.SoundLevelChanged
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when the sound level changes.
## -remarks
## -examples
## -see-also
[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.SoundLevelChanged
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.SoundLevelChanged
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when the sound level changes.
+
+## -remarks
+
+
+## -examples
+
+## -see-also
+[How to configure keys for media controls](http://go.microsoft.com/fwlink/p/?linkid=241436)
\ No newline at end of file
diff --git a/windows.media/mediacontrol_stoppressed.md b/windows.media/mediacontrol_stoppressed.md
index 199342bf01..2923ea3d81 100644
--- a/windows.media/mediacontrol_stoppressed.md
+++ b/windows.media/mediacontrol_stoppressed.md
@@ -1,3 +1,22 @@
----
-api-id: E:Windows.Media.MediaControl.StopPressed
--api-type: winrt event
----
# Windows.Media.MediaControl.StopPressed
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Event raised when a **Stop** command is issued to the application.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaControl.StopPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaControl.StopPressed
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Event raised when a **Stop** command is issued to the application.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediacontrol_trackname.md b/windows.media/mediacontrol_trackname.md
index df70d08b6e..18ea08f8a1 100644
--- a/windows.media/mediacontrol_trackname.md
+++ b/windows.media/mediacontrol_trackname.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Media.MediaControl.TrackName
--api-type: winrt property
----
# Windows.Media.MediaControl.TrackName
## -description
> [!NOTE]
> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
Gets or sets the track name.
## -property-value
The name of the track.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaControl.TrackName
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaControl.TrackName
+
+## -description
+> [!NOTE]
+> [MediaControl](mediacontrol.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+Gets or sets the track name.
+
+## -property-value
+The name of the track.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediaextensionmanager_mediaextensionmanager_1221375020.md b/windows.media/mediaextensionmanager_mediaextensionmanager_1221375020.md
index 8b9f716932..b592f818e0 100644
--- a/windows.media/mediaextensionmanager_mediaextensionmanager_1221375020.md
+++ b/windows.media/mediaextensionmanager_mediaextensionmanager_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.#ctor
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.MediaExtensionManager
## -description
Creates a new [MediaExtensionManager](mediaextensionmanager.md) object that is used to register a media parser or codec.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.MediaExtensionManager
+
+## -description
+Creates a new [MediaExtensionManager](mediaextensionmanager.md) object that is used to register a media parser or codec.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediaextensionmanager_registeraudiodecoder_2093559763.md b/windows.media/mediaextensionmanager_registeraudiodecoder_2093559763.md
index 28cf81241a..71c05254f6 100644
--- a/windows.media/mediaextensionmanager_registeraudiodecoder_2093559763.md
+++ b/windows.media/mediaextensionmanager_registeraudiodecoder_2093559763.md
@@ -1,3 +1,33 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterAudioDecoder(System.String,System.Guid,System.Guid,Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterAudioDecoder
## -description
Registers an audio decoder for the specified input and output media types with an optional configuration parameter.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the audio decoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param inputSubtype
The guid identifier of the media type that the audio decoder accepts as input.
### -param outputSubtype
The guid identifier of the media type that is output by the audio decoder.
### -param configuration
An optional parameter that contains the configuration properties to be passed to the audio decoder.
## -remarks
## -examples
## -see-also
[RegisterAudioDecoder(String, Guid, Guid)](mediaextensionmanager_registeraudiodecoder_2105091829.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterAudioDecoder(System.String,System.Guid,System.Guid,Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterAudioDecoder
+
+## -description
+Registers an audio decoder for the specified input and output media types with an optional configuration parameter.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the audio decoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param inputSubtype
+The guid identifier of the media type that the audio decoder accepts as input.
+
+### -param outputSubtype
+The guid identifier of the media type that is output by the audio decoder.
+
+### -param configuration
+An optional parameter that contains the configuration properties to be passed to the audio decoder.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterAudioDecoder(String, Guid, Guid)](mediaextensionmanager_registeraudiodecoder_2105091829.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registeraudiodecoder_2105091829.md b/windows.media/mediaextensionmanager_registeraudiodecoder_2105091829.md
index 6049b984a7..f2f609f07f 100644
--- a/windows.media/mediaextensionmanager_registeraudiodecoder_2105091829.md
+++ b/windows.media/mediaextensionmanager_registeraudiodecoder_2105091829.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterAudioDecoder(System.String,System.Guid,System.Guid)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterAudioDecoder
## -description
Registers an audio decoder for the specified input and output media types.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the audio decoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param inputSubtype
The guid identifier of the media type that the audio decoder accepts as input.
### -param outputSubtype
The guid identifier of the media type that is output by the audio decoder.
## -remarks
## -examples
## -see-also
[RegisterAudioDecoder(String, Guid, Guid, IPropertySet)](mediaextensionmanager_registeraudiodecoder_2093559763.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterAudioDecoder(System.String,System.Guid,System.Guid)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterAudioDecoder
+
+## -description
+Registers an audio decoder for the specified input and output media types.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the audio decoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param inputSubtype
+The guid identifier of the media type that the audio decoder accepts as input.
+
+### -param outputSubtype
+The guid identifier of the media type that is output by the audio decoder.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterAudioDecoder(String, Guid, Guid, IPropertySet)](mediaextensionmanager_registeraudiodecoder_2093559763.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registeraudioencoder_1961581056.md b/windows.media/mediaextensionmanager_registeraudioencoder_1961581056.md
index b8fe969f77..be18315cae 100644
--- a/windows.media/mediaextensionmanager_registeraudioencoder_1961581056.md
+++ b/windows.media/mediaextensionmanager_registeraudioencoder_1961581056.md
@@ -1,3 +1,33 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterAudioEncoder(System.String,System.Guid,System.Guid,Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterAudioEncoder
## -description
Registers an audio encoder for the specified input and output media types with an optional configuration parameter.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the audio encoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param inputSubtype
The guid identifier of the media type that the audio encoder accepts as input.
### -param outputSubtype
The guid identifier of the media type that is output by the audio encoder.
### -param configuration
An optional parameter that contains the configuration properties to be passed to the audio encoder.
## -remarks
## -examples
## -see-also
[RegisterAudioEncoder(String, Guid, Guid)](mediaextensionmanager_registeraudioencoder_1968919336.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterAudioEncoder(System.String,System.Guid,System.Guid,Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterAudioEncoder
+
+## -description
+Registers an audio encoder for the specified input and output media types with an optional configuration parameter.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the audio encoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param inputSubtype
+The guid identifier of the media type that the audio encoder accepts as input.
+
+### -param outputSubtype
+The guid identifier of the media type that is output by the audio encoder.
+
+### -param configuration
+An optional parameter that contains the configuration properties to be passed to the audio encoder.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterAudioEncoder(String, Guid, Guid)](mediaextensionmanager_registeraudioencoder_1968919336.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registeraudioencoder_1968919336.md b/windows.media/mediaextensionmanager_registeraudioencoder_1968919336.md
index 7a11130e5f..f7d2b72f52 100644
--- a/windows.media/mediaextensionmanager_registeraudioencoder_1968919336.md
+++ b/windows.media/mediaextensionmanager_registeraudioencoder_1968919336.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterAudioEncoder(System.String,System.Guid,System.Guid)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterAudioEncoder
## -description
Registers an audio encoder for the specified input and output media types.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the audio encoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param inputSubtype
The guid identifier of the media type that the audio encoder accepts as input.
### -param outputSubtype
The guid identifier of the media type that is output by the audio encoder.
## -remarks
## -examples
## -see-also
[RegisterAudioEncoder(String, Guid, Guid, IPropertySet)](mediaextensionmanager_registeraudioencoder_1961581056.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterAudioEncoder(System.String,System.Guid,System.Guid)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterAudioEncoder
+
+## -description
+Registers an audio encoder for the specified input and output media types.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the audio encoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param inputSubtype
+The guid identifier of the media type that the audio encoder accepts as input.
+
+### -param outputSubtype
+The guid identifier of the media type that is output by the audio encoder.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterAudioEncoder(String, Guid, Guid, IPropertySet)](mediaextensionmanager_registeraudioencoder_1961581056.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registerbytestreamhandler_1357134210.md b/windows.media/mediaextensionmanager_registerbytestreamhandler_1357134210.md
index b1836ecd13..d3d4dadd77 100644
--- a/windows.media/mediaextensionmanager_registerbytestreamhandler_1357134210.md
+++ b/windows.media/mediaextensionmanager_registerbytestreamhandler_1357134210.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterByteStreamHandler(System.String,System.String,System.String)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterByteStreamHandler
## -description
Registers a byte-stream handler by file name extension and MIME type.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the byte-stream handler. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param fileExtension
The file name extension that is registered for this byte-stream handler.
### -param mimeType
The MIME type that is registered for this byte-stream handler.
## -remarks
## -examples
## -see-also
[RegisterByteStreamHandler(String, String, String, IPropertySet)](mediaextensionmanager_registerbytestreamhandler_1364471974.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterByteStreamHandler(System.String,System.String,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterByteStreamHandler
+
+## -description
+Registers a byte-stream handler by file name extension and MIME type.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the byte-stream handler. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param fileExtension
+The file name extension that is registered for this byte-stream handler.
+
+### -param mimeType
+The MIME type that is registered for this byte-stream handler.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterByteStreamHandler(String, String, String, IPropertySet)](mediaextensionmanager_registerbytestreamhandler_1364471974.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registerbytestreamhandler_1364471974.md b/windows.media/mediaextensionmanager_registerbytestreamhandler_1364471974.md
index 0002acb465..52db445622 100644
--- a/windows.media/mediaextensionmanager_registerbytestreamhandler_1364471974.md
+++ b/windows.media/mediaextensionmanager_registerbytestreamhandler_1364471974.md
@@ -1,3 +1,33 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterByteStreamHandler(System.String,System.String,System.String,Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterByteStreamHandler
## -description
Registers a byte-stream handler by file name extension and MIME type, with an optional configuration parameter.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the byte-stream handler. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param fileExtension
The file name extension that is registered for this byte-stream handler.
### -param mimeType
The MIME type that is registered for this byte-stream handler.
### -param configuration
An optional parameter that contains configuration properties for the byte-stream handler.
## -remarks
## -examples
## -see-also
[RegisterByteStreamHandler(String, String, String)](mediaextensionmanager_registerbytestreamhandler_1357134210.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterByteStreamHandler(System.String,System.String,System.String,Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterByteStreamHandler
+
+## -description
+Registers a byte-stream handler by file name extension and MIME type, with an optional configuration parameter.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the byte-stream handler. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param fileExtension
+The file name extension that is registered for this byte-stream handler.
+
+### -param mimeType
+The MIME type that is registered for this byte-stream handler.
+
+### -param configuration
+An optional parameter that contains configuration properties for the byte-stream handler.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterByteStreamHandler(String, String, String)](mediaextensionmanager_registerbytestreamhandler_1357134210.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registerschemehandler_1279508154.md b/windows.media/mediaextensionmanager_registerschemehandler_1279508154.md
index a33b5afb2f..4961098206 100644
--- a/windows.media/mediaextensionmanager_registerschemehandler_1279508154.md
+++ b/windows.media/mediaextensionmanager_registerschemehandler_1279508154.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterSchemeHandler(System.String,System.String)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterSchemeHandler
## -description
Registers a scheme handler for the specified URL scheme.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the scheme handler. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param scheme
The URL scheme that will be recognized to invoke the scheme handler. For example, "myscheme://".
## -remarks
## -examples
## -see-also
[RegisterSchemeHandler(String, String, IPropertySet)](mediaextensionmanager_registerschemehandler_1285274154.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterSchemeHandler(System.String,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterSchemeHandler
+
+## -description
+Registers a scheme handler for the specified URL scheme.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the scheme handler. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param scheme
+The URL scheme that will be recognized to invoke the scheme handler. For example, "myscheme://".
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterSchemeHandler(String, String, IPropertySet)](mediaextensionmanager_registerschemehandler_1285274154.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registerschemehandler_1285274154.md b/windows.media/mediaextensionmanager_registerschemehandler_1285274154.md
index 493fb1ec35..d75de93bb2 100644
--- a/windows.media/mediaextensionmanager_registerschemehandler_1285274154.md
+++ b/windows.media/mediaextensionmanager_registerschemehandler_1285274154.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterSchemeHandler(System.String,System.String,Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterSchemeHandler
## -description
Registers a scheme handler for the specified URL scheme with an optional configuration parameter.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the scheme handler. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param scheme
The URL scheme that will be recognized to invoke the scheme handler. For example, "myscheme://".
### -param configuration
An optional parameter that contains configuration properties for the scheme handler.
## -remarks
## -examples
## -see-also
[RegisterSchemeHandler(String, String)](mediaextensionmanager_registerschemehandler_1279508154.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterSchemeHandler(System.String,System.String,Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterSchemeHandler
+
+## -description
+Registers a scheme handler for the specified URL scheme with an optional configuration parameter.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the scheme handler. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param scheme
+The URL scheme that will be recognized to invoke the scheme handler. For example, "myscheme://".
+
+### -param configuration
+An optional parameter that contains configuration properties for the scheme handler.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterSchemeHandler(String, String)](mediaextensionmanager_registerschemehandler_1279508154.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registervideodecoder_1412028083.md b/windows.media/mediaextensionmanager_registervideodecoder_1412028083.md
index f5cc19fccd..9a2fcd52c0 100644
--- a/windows.media/mediaextensionmanager_registervideodecoder_1412028083.md
+++ b/windows.media/mediaextensionmanager_registervideodecoder_1412028083.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterVideoDecoder(System.String,System.Guid,System.Guid)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterVideoDecoder
## -description
Registers an video decoder for the specified input and output media types.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the video decoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param inputSubtype
The guid identifier of the media type that the video decoder accepts as input.
### -param outputSubtype
The guid identifier of the media type that is output by the video decoder.
## -remarks
## -examples
## -see-also
[RegisterVideoDecoder(String, Guid, Guid, IPropertySet)](mediaextensionmanager_registervideodecoder_1436147605.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterVideoDecoder(System.String,System.Guid,System.Guid)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterVideoDecoder
+
+## -description
+Registers an video decoder for the specified input and output media types.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the video decoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param inputSubtype
+The guid identifier of the media type that the video decoder accepts as input.
+
+### -param outputSubtype
+The guid identifier of the media type that is output by the video decoder.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterVideoDecoder(String, Guid, Guid, IPropertySet)](mediaextensionmanager_registervideodecoder_1436147605.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registervideodecoder_1436147605.md b/windows.media/mediaextensionmanager_registervideodecoder_1436147605.md
index 9b06f6b08f..083e3b128e 100644
--- a/windows.media/mediaextensionmanager_registervideodecoder_1436147605.md
+++ b/windows.media/mediaextensionmanager_registervideodecoder_1436147605.md
@@ -1,3 +1,33 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterVideoDecoder(System.String,System.Guid,System.Guid,Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterVideoDecoder
## -description
Registers a video decoder for the specified input and output media types with an optional configuration parameter.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the video decoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param inputSubtype
The guid identifier of the media type that the video decoder accepts as input.
### -param outputSubtype
The guid identifier of the media type that is output by the video decoder.
### -param configuration
An optional parameter that contains the configuration properties to be passed to the video decoder.
## -remarks
## -examples
## -see-also
[RegisterVideoDecoder(String, Guid, Guid)](mediaextensionmanager_registervideodecoder_1412028083.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterVideoDecoder(System.String,System.Guid,System.Guid,Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterVideoDecoder
+
+## -description
+Registers a video decoder for the specified input and output media types with an optional configuration parameter.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the video decoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param inputSubtype
+The guid identifier of the media type that the video decoder accepts as input.
+
+### -param outputSubtype
+The guid identifier of the media type that is output by the video decoder.
+
+### -param configuration
+An optional parameter that contains the configuration properties to be passed to the video decoder.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterVideoDecoder(String, Guid, Guid)](mediaextensionmanager_registervideodecoder_1412028083.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registervideoencoder_681733388.md b/windows.media/mediaextensionmanager_registervideoencoder_681733388.md
index 549ee74625..3978570b51 100644
--- a/windows.media/mediaextensionmanager_registervideoencoder_681733388.md
+++ b/windows.media/mediaextensionmanager_registervideoencoder_681733388.md
@@ -1,3 +1,33 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterVideoEncoder(System.String,System.Guid,System.Guid,Windows.Foundation.Collections.IPropertySet)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterVideoEncoder
## -description
Registers a video encoder for the specified input and output media types with an optional configuration parameter.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the video encoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param inputSubtype
The guid identifier of the media type that the video encoder accepts as input.
### -param outputSubtype
The guid identifier of the media type that is output by the video encoder.
### -param configuration
An optional parameter that contains the configuration properties to be passed to the video encoder.
## -remarks
## -examples
## -see-also
[RegisterVideoEncoder(String, Guid, Guid)](mediaextensionmanager_registervideoencoder_689071148.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterVideoEncoder(System.String,System.Guid,System.Guid,Windows.Foundation.Collections.IPropertySet)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterVideoEncoder
+
+## -description
+Registers a video encoder for the specified input and output media types with an optional configuration parameter.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the video encoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param inputSubtype
+The guid identifier of the media type that the video encoder accepts as input.
+
+### -param outputSubtype
+The guid identifier of the media type that is output by the video encoder.
+
+### -param configuration
+An optional parameter that contains the configuration properties to be passed to the video encoder.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterVideoEncoder(String, Guid, Guid)](mediaextensionmanager_registervideoencoder_689071148.md)
\ No newline at end of file
diff --git a/windows.media/mediaextensionmanager_registervideoencoder_689071148.md b/windows.media/mediaextensionmanager_registervideoencoder_689071148.md
index 9fead6a91b..08bb9e00a2 100644
--- a/windows.media/mediaextensionmanager_registervideoencoder_689071148.md
+++ b/windows.media/mediaextensionmanager_registervideoencoder_689071148.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.MediaExtensionManager.RegisterVideoEncoder(System.String,System.Guid,System.Guid)
--api-type: winrt method
----
# Windows.Media.MediaExtensionManager.RegisterVideoEncoder
## -description
Registers a video encoder for the specified input and output media types.
## -parameters
### -param activatableClassId
The class identifier of the activatable runtime class of the video encoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
### -param inputSubtype
The guid identifier of the media type that the video encoder accepts as input.
### -param outputSubtype
The guid identifier of the media type that is output by the video encoder.
## -remarks
## -examples
## -see-also
[RegisterVideoEncoder(String, Guid, Guid, IPropertySet)](mediaextensionmanager_registervideoencoder_681733388.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaExtensionManager.RegisterVideoEncoder(System.String,System.Guid,System.Guid)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaExtensionManager.RegisterVideoEncoder
+
+## -description
+Registers a video encoder for the specified input and output media types.
+
+## -parameters
+### -param activatableClassId
+The class identifier of the activatable runtime class of the video encoder. The runtime class must implement the [IMediaExtension](imediaextension.md) interface.
+
+### -param inputSubtype
+The guid identifier of the media type that the video encoder accepts as input.
+
+### -param outputSubtype
+The guid identifier of the media type that is output by the video encoder.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[RegisterVideoEncoder(String, Guid, Guid, IPropertySet)](mediaextensionmanager_registervideoencoder_681733388.md)
\ No newline at end of file
diff --git a/windows.media/mediamarkertypes.md b/windows.media/mediamarkertypes.md
index f7244ed48c..38945d5f04 100644
--- a/windows.media/mediamarkertypes.md
+++ b/windows.media/mediamarkertypes.md
@@ -1,3 +1,19 @@
----
-api-id: T:Windows.Media.MediaMarkerTypes
--api-type: winrt class
----
# Windows.Media.MediaMarkerTypes
## -description
Provides a static list of media marker types.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.MediaMarkerTypes
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.MediaMarkerTypes
+
+## -description
+Provides a static list of media marker types.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediamarkertypes_bookmark.md b/windows.media/mediamarkertypes_bookmark.md
index 42b1b2c0dc..e75a4a3389 100644
--- a/windows.media/mediamarkertypes_bookmark.md
+++ b/windows.media/mediamarkertypes_bookmark.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.MediaMarkerTypes.Bookmark
--api-type: winrt property
----
# Windows.Media.MediaMarkerTypes.Bookmark
## -description
Gets the value of the Bookmark type which is returned as the string "Bookmark"
## -property-value
The bookmark type which is return as the string "Bookmark".
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaMarkerTypes.Bookmark
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaMarkerTypes.Bookmark
+
+## -description
+Gets the value of the Bookmark type which is returned as the string "Bookmark"
+
+## -property-value
+The bookmark type which is return as the string "Bookmark".
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediaprocessingtriggerdetails.md b/windows.media/mediaprocessingtriggerdetails.md
index 3a75042090..198b562192 100644
--- a/windows.media/mediaprocessingtriggerdetails.md
+++ b/windows.media/mediaprocessingtriggerdetails.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.MediaProcessingTriggerDetails
--api-type: winrt class
----
# Windows.Media.MediaProcessingTriggerDetails
## -description
Provides a media processing background task access to the set of arguments supplied in the call to [MediaProcessingTrigger::RequestAsync](../windows.applicationmodel.background/mediaprocessingtrigger_requestasync_1089362155.md).
## -remarks
Get an instance of this class by casting the [TriggerDetails](../windows.applicationmodel.background/ibackgroundtaskinstance_triggerdetails.md) property of the [IBackgroundTaskInstance](../windows.applicationmodel.background/ibackgroundtaskinstance.md) object, which is passed into the [Run](../windows.applicationmodel.background/ibackgroundtask_run.md) method of your background task, to a **MediaProcessingTriggerDetails** object.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.MediaProcessingTriggerDetails
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.MediaProcessingTriggerDetails
+
+## -description
+Provides a media processing background task access to the set of arguments supplied in the call to [MediaProcessingTrigger::RequestAsync](../windows.applicationmodel.background/mediaprocessingtrigger_requestasync_1089362155.md).
+
+## -remarks
+Get an instance of this class by casting the [TriggerDetails](../windows.applicationmodel.background/ibackgroundtaskinstance_triggerdetails.md) property of the [IBackgroundTaskInstance](../windows.applicationmodel.background/ibackgroundtaskinstance.md) object, which is passed into the [Run](../windows.applicationmodel.background/ibackgroundtask_run.md) method of your background task, to a **MediaProcessingTriggerDetails** object.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediaprocessingtriggerdetails_arguments.md b/windows.media/mediaprocessingtriggerdetails_arguments.md
index 025e4f64ec..afde559a21 100644
--- a/windows.media/mediaprocessingtriggerdetails_arguments.md
+++ b/windows.media/mediaprocessingtriggerdetails_arguments.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.MediaProcessingTriggerDetails.Arguments
--api-type: winrt property
----
# Windows.Media.MediaProcessingTriggerDetails.Arguments
## -description
Gets a value set containing the arguments supplied in the call to [MediaProcessingTrigger::RequestAsync](../windows.applicationmodel.background/mediaprocessingtrigger_requestasync_1089362155.md).
## -property-value
A value set containing the arguments supplied in the call to [MediaProcessingTrigger::RequestAsync](../windows.applicationmodel.background/mediaprocessingtrigger_requestasync_1089362155.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaProcessingTriggerDetails.Arguments
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaProcessingTriggerDetails.Arguments
+
+## -description
+Gets a value set containing the arguments supplied in the call to [MediaProcessingTrigger::RequestAsync](../windows.applicationmodel.background/mediaprocessingtrigger_requestasync_1089362155.md).
+
+## -property-value
+A value set containing the arguments supplied in the call to [MediaProcessingTrigger::RequestAsync](../windows.applicationmodel.background/mediaprocessingtrigger_requestasync_1089362155.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediatimelinecontroller.md b/windows.media/mediatimelinecontroller.md
index d75a9dc429..b5639cb26f 100644
--- a/windows.media/mediatimelinecontroller.md
+++ b/windows.media/mediatimelinecontroller.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.MediaTimelineController
--api-type: winrt class
----
# Windows.Media.MediaTimelineController
## -description
Provides information about and control over the rate, position, and state of a [MediaPlayer](../windows.media.playback/mediaplayer.md). This class makes it possible to control and synchronize multiple media players from a single controller and makes it easier to create custom transport controls.
## -remarks
Get an instance of this class using the constructor or by accessing the [TimelineController](../windows.media.playback/mediaplayer_timelinecontroller.md) property of a [MediaPlayer](../windows.media.playback/mediaplayer.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.MediaTimelineController
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.MediaTimelineController
+
+## -description
+Provides information about and control over the rate, position, and state of a [MediaPlayer](../windows.media.playback/mediaplayer.md). This class makes it possible to control and synchronize multiple media players from a single controller and makes it easier to create custom transport controls.
+
+## -remarks
+Get an instance of this class using the constructor or by accessing the [TimelineController](../windows.media.playback/mediaplayer_timelinecontroller.md) property of a [MediaPlayer](../windows.media.playback/mediaplayer.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediatimelinecontroller_clockrate.md b/windows.media/mediatimelinecontroller_clockrate.md
index 5743e75b62..f9e85afb04 100644
--- a/windows.media/mediatimelinecontroller_clockrate.md
+++ b/windows.media/mediatimelinecontroller_clockrate.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.MediaTimelineController.ClockRate
--api-type: winrt property
----
# Windows.Media.MediaTimelineController.ClockRate
## -description
Gets or sets the speed at which the position of the [MediaTimelineController](mediatimelinecontroller.md) changes, expressed as a ratio to normal playback speed. For example, setting a value of 1.0 will result in normal playback speed, a value of 4.0 will result in a playback speed 4 times the normal speed.
## -property-value
The speed at which the position of the [MediaTimelineController](mediatimelinecontroller.md) changes.
## -remarks
Only positive values are supported for **ClockRate**. Attempting to set a negative value will result in an argument exception.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaTimelineController.ClockRate
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaTimelineController.ClockRate
+
+## -description
+Gets or sets the speed at which the position of the [MediaTimelineController](mediatimelinecontroller.md) changes, expressed as a ratio to normal playback speed. For example, setting a value of 1.0 will result in normal playback speed, a value of 4.0 will result in a playback speed 4 times the normal speed.
+
+## -property-value
+The speed at which the position of the [MediaTimelineController](mediatimelinecontroller.md) changes.
+
+## -remarks
+Only positive values are supported for **ClockRate**. Attempting to set a negative value will result in an argument exception.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediatimelinecontroller_mediatimelinecontroller_1221375020.md b/windows.media/mediatimelinecontroller_mediatimelinecontroller_1221375020.md
index 9cff6c78ea..b89bf1d85f 100644
--- a/windows.media/mediatimelinecontroller_mediatimelinecontroller_1221375020.md
+++ b/windows.media/mediatimelinecontroller_mediatimelinecontroller_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.MediaTimelineController.#ctor
--api-type: winrt method
----
# Windows.Media.MediaTimelineController.MediaTimelineController
## -description
Initializes a new instance of the [MediaTimelineController](mediatimelinecontroller.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaTimelineController.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaTimelineController.MediaTimelineController
+
+## -description
+Initializes a new instance of the [MediaTimelineController](mediatimelinecontroller.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediatimelinecontroller_pause_1953642114.md b/windows.media/mediatimelinecontroller_pause_1953642114.md
index b687e65159..292b95b0eb 100644
--- a/windows.media/mediatimelinecontroller_pause_1953642114.md
+++ b/windows.media/mediatimelinecontroller_pause_1953642114.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.MediaTimelineController.Pause
--api-type: winrt method
----
# Windows.Media.MediaTimelineController.Pause
## -description
Pauses playback of the [MediaTimelineController](mediatimelinecontroller.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaTimelineController.Pause
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaTimelineController.Pause
+
+## -description
+Pauses playback of the [MediaTimelineController](mediatimelinecontroller.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediatimelinecontroller_position.md b/windows.media/mediatimelinecontroller_position.md
index 02148312cf..9b163f9d92 100644
--- a/windows.media/mediatimelinecontroller_position.md
+++ b/windows.media/mediatimelinecontroller_position.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.MediaTimelineController.Position
--api-type: winrt property
----
# Windows.Media.MediaTimelineController.Position
## -description
Gets or sets the current position of the [MediaTimelineController](mediatimelinecontroller.md).
## -property-value
The current position of the [MediaTimelineController](mediatimelinecontroller.md).
## -remarks
To receive periodic notifications when the timeline controller's position changes, handle the [PositionChanged](mediatimelinecontroller_positionchanged.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaTimelineController.Position
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaTimelineController.Position
+
+## -description
+Gets or sets the current position of the [MediaTimelineController](mediatimelinecontroller.md).
+
+## -property-value
+The current position of the [MediaTimelineController](mediatimelinecontroller.md).
+
+## -remarks
+To receive periodic notifications when the timeline controller's position changes, handle the [PositionChanged](mediatimelinecontroller_positionchanged.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediatimelinecontroller_positionchanged.md b/windows.media/mediatimelinecontroller_positionchanged.md
index 586b1fd157..19efb1ebc1 100644
--- a/windows.media/mediatimelinecontroller_positionchanged.md
+++ b/windows.media/mediatimelinecontroller_positionchanged.md
@@ -1,3 +1,20 @@
----
-api-id: E:Windows.Media.MediaTimelineController.PositionChanged
--api-type: winrt event
----
# Windows.Media.MediaTimelineController.PositionChanged
## -description
Occurs when the position of the [MediaTimelineController](mediatimelinecontroller.md) changes.
## -remarks
This event is raised by the system several times per second while the position of the **MediaTimelineController** is changing.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaTimelineController.PositionChanged
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaTimelineController.PositionChanged
+
+## -description
+Occurs when the position of the [MediaTimelineController](mediatimelinecontroller.md) changes.
+
+## -remarks
+This event is raised by the system several times per second while the position of the **MediaTimelineController** is changing.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediatimelinecontroller_resume_406343050.md b/windows.media/mediatimelinecontroller_resume_406343050.md
index e5af41b8c2..2d483eaf37 100644
--- a/windows.media/mediatimelinecontroller_resume_406343050.md
+++ b/windows.media/mediatimelinecontroller_resume_406343050.md
@@ -1,3 +1,20 @@
----
-api-id: M:Windows.Media.MediaTimelineController.Resume
--api-type: winrt method
----
# Windows.Media.MediaTimelineController.Resume
## -description
Resumes the playback of the [MediaTimelineController](mediatimelinecontroller.md) from the position at which the controller was paused.
## -remarks
To restart the [MediaTimelineController](mediatimelinecontroller.md) at position 0, call [Start](mediatimelinecontroller_start.md) instead.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaTimelineController.Resume
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaTimelineController.Resume
+
+## -description
+Resumes the playback of the [MediaTimelineController](mediatimelinecontroller.md) from the position at which the controller was paused.
+
+## -remarks
+To restart the [MediaTimelineController](mediatimelinecontroller.md) at position 0, call [Start](mediatimelinecontroller_start.md) instead.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediatimelinecontroller_start_1587696324.md b/windows.media/mediatimelinecontroller_start_1587696324.md
index dd4518ee9b..3c39aeda98 100644
--- a/windows.media/mediatimelinecontroller_start_1587696324.md
+++ b/windows.media/mediatimelinecontroller_start_1587696324.md
@@ -1,3 +1,20 @@
----
-api-id: M:Windows.Media.MediaTimelineController.Start
--api-type: winrt method
----
# Windows.Media.MediaTimelineController.Start
## -description
Starts the playback of the [MediaTimelineController](mediatimelinecontroller.md) from the position 0.
## -remarks
To resume playback of a paused [MediaTimelineController](mediatimelinecontroller.md) without resetting the position to 0, call [Pause](mediatimelinecontroller_pause.md) instead.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.MediaTimelineController.Start
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.MediaTimelineController.Start
+
+## -description
+Starts the playback of the [MediaTimelineController](mediatimelinecontroller.md) from the position 0.
+
+## -remarks
+To resume playback of a paused [MediaTimelineController](mediatimelinecontroller.md) without resetting the position to 0, call [Pause](mediatimelinecontroller_pause.md) instead.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediatimelinecontroller_state.md b/windows.media/mediatimelinecontroller_state.md
index fce93c5b21..87b4e1b9e9 100644
--- a/windows.media/mediatimelinecontroller_state.md
+++ b/windows.media/mediatimelinecontroller_state.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.MediaTimelineController.State
--api-type: winrt property
----
# Windows.Media.MediaTimelineController.State
## -description
Gets a value indicating the current state of the [MediaTimelineController](mediatimelinecontroller.md), which can be either running or paused.
## -property-value
A value indicating the current state of the [MediaTimelineController](mediatimelinecontroller.md)
## -remarks
To receive notifications when the state of the [MediaTimelineController](mediatimelinecontroller.md) changes, handle the [StateChanged](mediatimelinecontroller_statechanged.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MediaTimelineController.State
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MediaTimelineController.State
+
+## -description
+Gets a value indicating the current state of the [MediaTimelineController](mediatimelinecontroller.md), which can be either running or paused.
+
+## -property-value
+A value indicating the current state of the [MediaTimelineController](mediatimelinecontroller.md)
+
+## -remarks
+To receive notifications when the state of the [MediaTimelineController](mediatimelinecontroller.md) changes, handle the [StateChanged](mediatimelinecontroller_statechanged.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/mediatimelinecontroller_statechanged.md b/windows.media/mediatimelinecontroller_statechanged.md
index 04e936ee7a..ed089734bc 100644
--- a/windows.media/mediatimelinecontroller_statechanged.md
+++ b/windows.media/mediatimelinecontroller_statechanged.md
@@ -1,3 +1,19 @@
----
-api-id: E:Windows.Media.MediaTimelineController.StateChanged
--api-type: winrt event
----
# Windows.Media.MediaTimelineController.StateChanged
## -description
Occurs when the state of the [MediaTimelineController](mediatimelinecontroller.md) changes.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.MediaTimelineController.StateChanged
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.MediaTimelineController.StateChanged
+
+## -description
+Occurs when the state of the [MediaTimelineController](mediatimelinecontroller.md) changes.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/musicdisplayproperties.md b/windows.media/musicdisplayproperties.md
index 50d61a35a7..0cf727e034 100644
--- a/windows.media/musicdisplayproperties.md
+++ b/windows.media/musicdisplayproperties.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.MusicDisplayProperties
--api-type: winrt class
----
# Windows.Media.MusicDisplayProperties
## -description
Provides properties for music information that is displayed by the [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md) class.
## -remarks
Starting with Windows 10, version 1607, UWP apps that use the [MediaPlayer](../windows.media.playback/mediaplayer.md) class or [AudioGraph](../windows.media.audio/audiograph.md) class to play media are automatically integrated with the System Media Transport Controls by default. When using automatic integration, you can get an instance of the **MusicDisplayProperties** class using the [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) class. Call [GetDisplayProperties](../windows.media.playback/mediaplaybackitem_getdisplayproperties.md) to get an instance of the [MediaItemDisplayProperties](../windows.media.playback/mediaitemdisplayproperties.md) class. Update the object with the values you want to be displayed for the item in the SMTC and then call [ApplyDisplayProperties](../windows.media.playback/mediaplaybackitem_applydisplayproperties.md) to commit the changes. For how-to guidance on using the SMTC from your app, see [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols).
When manually controlling the SMTC, get an instance of **MusicDisplayProperties** by using the [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md) class. For how-to guidance on manually controlling the SMTC, see [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls).
## -examples
## -see-also
[MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md), [MediaItemDisplayProperties](../windows.media.playback/mediaitemdisplayproperties.md), [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md), [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols), [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.MusicDisplayProperties
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.MusicDisplayProperties
+
+## -description
+Provides properties for music information that is displayed by the [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md) class.
+
+## -remarks
+Starting with Windows 10, version 1607, UWP apps that use the [MediaPlayer](../windows.media.playback/mediaplayer.md) class or [AudioGraph](../windows.media.audio/audiograph.md) class to play media are automatically integrated with the System Media Transport Controls by default. When using automatic integration, you can get an instance of the **MusicDisplayProperties** class using the [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) class. Call [GetDisplayProperties](../windows.media.playback/mediaplaybackitem_getdisplayproperties.md) to get an instance of the [MediaItemDisplayProperties](../windows.media.playback/mediaitemdisplayproperties.md) class. Update the object with the values you want to be displayed for the item in the SMTC and then call [ApplyDisplayProperties](../windows.media.playback/mediaplaybackitem_applydisplayproperties.md) to commit the changes. For how-to guidance on using the SMTC from your app, see [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols).
+
+When manually controlling the SMTC, get an instance of **MusicDisplayProperties** by using the [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md) class. For how-to guidance on manually controlling the SMTC, see [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls).
+
+## -examples
+
+## -see-also
+[MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md), [MediaItemDisplayProperties](../windows.media.playback/mediaitemdisplayproperties.md), [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md), [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols), [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls)
\ No newline at end of file
diff --git a/windows.media/musicdisplayproperties_albumartist.md b/windows.media/musicdisplayproperties_albumartist.md
index 2b2bb31115..606b60f403 100644
--- a/windows.media/musicdisplayproperties_albumartist.md
+++ b/windows.media/musicdisplayproperties_albumartist.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.MusicDisplayProperties.AlbumArtist
--api-type: winrt property
----
# Windows.Media.MusicDisplayProperties.AlbumArtist
## -description
Gets or sets the name of the album artist.
## -property-value
The name of the album artist.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MusicDisplayProperties.AlbumArtist
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MusicDisplayProperties.AlbumArtist
+
+## -description
+Gets or sets the name of the album artist.
+
+## -property-value
+The name of the album artist.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/musicdisplayproperties_albumtitle.md b/windows.media/musicdisplayproperties_albumtitle.md
index 37d2e0b390..f4969a8d72 100644
--- a/windows.media/musicdisplayproperties_albumtitle.md
+++ b/windows.media/musicdisplayproperties_albumtitle.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.MusicDisplayProperties.AlbumTitle
--api-type: winrt property
----
# Windows.Media.MusicDisplayProperties.AlbumTitle
## -description
Gets or sets the album title.
## -property-value
The album title.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MusicDisplayProperties.AlbumTitle
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MusicDisplayProperties.AlbumTitle
+
+## -description
+Gets or sets the album title.
+
+## -property-value
+The album title.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/musicdisplayproperties_albumtrackcount.md b/windows.media/musicdisplayproperties_albumtrackcount.md
index f4f0d8a65e..e841031d59 100644
--- a/windows.media/musicdisplayproperties_albumtrackcount.md
+++ b/windows.media/musicdisplayproperties_albumtrackcount.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.MusicDisplayProperties.AlbumTrackCount
--api-type: winrt property
----
# Windows.Media.MusicDisplayProperties.AlbumTrackCount
## -description
Gets or sets the album track count.
## -property-value
The album track count.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MusicDisplayProperties.AlbumTrackCount
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MusicDisplayProperties.AlbumTrackCount
+
+## -description
+Gets or sets the album track count.
+
+## -property-value
+The album track count.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/musicdisplayproperties_artist.md b/windows.media/musicdisplayproperties_artist.md
index 36413c850b..ea2c1fe62d 100644
--- a/windows.media/musicdisplayproperties_artist.md
+++ b/windows.media/musicdisplayproperties_artist.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.MusicDisplayProperties.Artist
--api-type: winrt property
----
# Windows.Media.MusicDisplayProperties.Artist
## -description
Gets or set the name of the song artist.
## -property-value
The name of the song artist.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MusicDisplayProperties.Artist
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MusicDisplayProperties.Artist
+
+## -description
+Gets or set the name of the song artist.
+
+## -property-value
+The name of the song artist.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/musicdisplayproperties_genres.md b/windows.media/musicdisplayproperties_genres.md
index f191e12e28..eccb42120e 100644
--- a/windows.media/musicdisplayproperties_genres.md
+++ b/windows.media/musicdisplayproperties_genres.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.MusicDisplayProperties.Genres
--api-type: winrt property
----
# Windows.Media.MusicDisplayProperties.Genres
## -description
Gets a modifiable list of strings representing genre names.
## -property-value
A modifiable list of strings representing genre names.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MusicDisplayProperties.Genres
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MusicDisplayProperties.Genres
+
+## -description
+Gets a modifiable list of strings representing genre names.
+
+## -property-value
+A modifiable list of strings representing genre names.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/musicdisplayproperties_title.md b/windows.media/musicdisplayproperties_title.md
index b761ea29a2..b27fd1c828 100644
--- a/windows.media/musicdisplayproperties_title.md
+++ b/windows.media/musicdisplayproperties_title.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.MusicDisplayProperties.Title
--api-type: winrt property
----
# Windows.Media.MusicDisplayProperties.Title
## -description
Gets or set the title of the song.
## -property-value
The title of the song.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MusicDisplayProperties.Title
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MusicDisplayProperties.Title
+
+## -description
+Gets or set the title of the song.
+
+## -property-value
+The title of the song.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/musicdisplayproperties_tracknumber.md b/windows.media/musicdisplayproperties_tracknumber.md
index 578d190119..9ed3786d90 100644
--- a/windows.media/musicdisplayproperties_tracknumber.md
+++ b/windows.media/musicdisplayproperties_tracknumber.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.MusicDisplayProperties.TrackNumber
--api-type: winrt property
----
# Windows.Media.MusicDisplayProperties.TrackNumber
## -description
Gets or sets the track number.
## -property-value
The track number.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.MusicDisplayProperties.TrackNumber
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.MusicDisplayProperties.TrackNumber
+
+## -description
+Gets or sets the track number.
+
+## -property-value
+The track number.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/playbackpositionchangerequestedeventargs.md b/windows.media/playbackpositionchangerequestedeventargs.md
index 85b645125f..1aa353065a 100644
--- a/windows.media/playbackpositionchangerequestedeventargs.md
+++ b/windows.media/playbackpositionchangerequestedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.PlaybackPositionChangeRequestedEventArgs
--api-type: winrt class
----
# Windows.Media.PlaybackPositionChangeRequestedEventArgs
## -description
Provides data for the [PlaybackPositionChangeRequested](systemmediatransportcontrols_playbackpositionchangerequested.md) event.
## -remarks
Get an instance of this class by handling the [PlaybackPositionChangeRequested](systemmediatransportcontrols_playbackpositionchangerequested.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.PlaybackPositionChangeRequestedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.PlaybackPositionChangeRequestedEventArgs
+
+## -description
+Provides data for the [PlaybackPositionChangeRequested](systemmediatransportcontrols_playbackpositionchangerequested.md) event.
+
+## -remarks
+Get an instance of this class by handling the [PlaybackPositionChangeRequested](systemmediatransportcontrols_playbackpositionchangerequested.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/playbackpositionchangerequestedeventargs_requestedplaybackposition.md b/windows.media/playbackpositionchangerequestedeventargs_requestedplaybackposition.md
index ddadd013c7..787aaa17cb 100644
--- a/windows.media/playbackpositionchangerequestedeventargs_requestedplaybackposition.md
+++ b/windows.media/playbackpositionchangerequestedeventargs_requestedplaybackposition.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.PlaybackPositionChangeRequestedEventArgs.RequestedPlaybackPosition
--api-type: winrt property
----
# Windows.Media.PlaybackPositionChangeRequestedEventArgs.RequestedPlaybackPosition
## -description
Gets a value indicating the requested offset into the media item.
## -property-value
A value indicating the requested offset into the media item.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.PlaybackPositionChangeRequestedEventArgs.RequestedPlaybackPosition
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.PlaybackPositionChangeRequestedEventArgs.RequestedPlaybackPosition
+
+## -description
+Gets a value indicating the requested offset into the media item.
+
+## -property-value
+A value indicating the requested offset into the media item.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/playbackratechangerequestedeventargs.md b/windows.media/playbackratechangerequestedeventargs.md
index 69cf40591b..7dc161cce4 100644
--- a/windows.media/playbackratechangerequestedeventargs.md
+++ b/windows.media/playbackratechangerequestedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.PlaybackRateChangeRequestedEventArgs
--api-type: winrt class
----
# Windows.Media.PlaybackRateChangeRequestedEventArgs
## -description
Provides data for the [PlaybackRateChangeRequested](systemmediatransportcontrols_playbackratechangerequested.md) event.
## -remarks
Get an instance of this class by handling the [PlaybackRateChangeRequested](systemmediatransportcontrols_playbackratechangerequested.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.PlaybackRateChangeRequestedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.PlaybackRateChangeRequestedEventArgs
+
+## -description
+Provides data for the [PlaybackRateChangeRequested](systemmediatransportcontrols_playbackratechangerequested.md) event.
+
+## -remarks
+Get an instance of this class by handling the [PlaybackRateChangeRequested](systemmediatransportcontrols_playbackratechangerequested.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/playbackratechangerequestedeventargs_requestedplaybackrate.md b/windows.media/playbackratechangerequestedeventargs_requestedplaybackrate.md
index 98df38401a..57316d3066 100644
--- a/windows.media/playbackratechangerequestedeventargs_requestedplaybackrate.md
+++ b/windows.media/playbackratechangerequestedeventargs_requestedplaybackrate.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.PlaybackRateChangeRequestedEventArgs.RequestedPlaybackRate
--api-type: winrt property
----
# Windows.Media.PlaybackRateChangeRequestedEventArgs.RequestedPlaybackRate
## -description
Gets the requested playback rate.
## -property-value
The requested playback rate.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.PlaybackRateChangeRequestedEventArgs.RequestedPlaybackRate
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.PlaybackRateChangeRequestedEventArgs.RequestedPlaybackRate
+
+## -description
+Gets the requested playback rate.
+
+## -property-value
+The requested playback rate.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/shuffleenabledchangerequestedeventargs.md b/windows.media/shuffleenabledchangerequestedeventargs.md
index 9b25040577..8bcc159a9d 100644
--- a/windows.media/shuffleenabledchangerequestedeventargs.md
+++ b/windows.media/shuffleenabledchangerequestedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.ShuffleEnabledChangeRequestedEventArgs
--api-type: winrt class
----
# Windows.Media.ShuffleEnabledChangeRequestedEventArgs
## -description
Provides data for the [ShuffleEnabledChangeRequested](systemmediatransportcontrols_shuffleenabledchangerequested.md) event.
## -remarks
Get an instance of this class by handling the [ShuffleEnabledChangeRequested](systemmediatransportcontrols_shuffleenabledchangerequested.md) event.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.ShuffleEnabledChangeRequestedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.ShuffleEnabledChangeRequestedEventArgs
+
+## -description
+Provides data for the [ShuffleEnabledChangeRequested](systemmediatransportcontrols_shuffleenabledchangerequested.md) event.
+
+## -remarks
+Get an instance of this class by handling the [ShuffleEnabledChangeRequested](systemmediatransportcontrols_shuffleenabledchangerequested.md) event.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/shuffleenabledchangerequestedeventargs_requestedshuffleenabled.md b/windows.media/shuffleenabledchangerequestedeventargs_requestedshuffleenabled.md
index cd38478539..70efb3eb2a 100644
--- a/windows.media/shuffleenabledchangerequestedeventargs_requestedshuffleenabled.md
+++ b/windows.media/shuffleenabledchangerequestedeventargs_requestedshuffleenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.ShuffleEnabledChangeRequestedEventArgs.RequestedShuffleEnabled
--api-type: winrt property
----
# Windows.Media.ShuffleEnabledChangeRequestedEventArgs.RequestedShuffleEnabled
## -description
Gets a value indicating whether the request is to enable or disable shuffle.
## -property-value
True if the request is for shuffle to be enabled; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.ShuffleEnabledChangeRequestedEventArgs.RequestedShuffleEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.ShuffleEnabledChangeRequestedEventArgs.RequestedShuffleEnabled
+
+## -description
+Gets a value indicating whether the request is to enable or disable shuffle.
+
+## -property-value
+True if the request is for shuffle to be enabled; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols.md b/windows.media/systemmediatransportcontrols.md
index c27f998c11..b62c1f656f 100644
--- a/windows.media/systemmediatransportcontrols.md
+++ b/windows.media/systemmediatransportcontrols.md
@@ -1,3 +1,25 @@
----
-api-id: T:Windows.Media.SystemMediaTransportControls
--api-type: winrt class
----
# Windows.Media.SystemMediaTransportControls
## -description
Represents an object that enables integrate with the system media transport controls and support for media commands.
## -remarks
The [SystemMediaTransportControls](systemmediatransportcontrols.md) replaces the [MediaControl](mediacontrol.md) class. In Windows 8.1 and later, you should use this control instead of [MediaControl](mediacontrol.md) to interact with the system transport controls. The system transport controls enable music application developers to hook into a system-wide transport control. The system transport control allows a user to control a music application that is in the background as well as get and set the current information on which track is playing.
Starting with Windows 10, version 1607, UWP apps that use the [MediaPlayer](../windows.media.playback/mediaplayer.md) class or [AudioGraph](../windows.media.audio/audiograph.md) class to play media are automatically integrated with the SMTC by default. Simply instantiate a new instance of **MediaPlayer** and assign a [MediaSource](../windows.media.core/mediasource.md), [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md), or [MediaPlaybackList](../windows.media.playback/mediaplaybacklist.md) to the player's [Source](../windows.media.playback/mediaplayer_source.md) property and the user will see your app name in the SMTC and can play, pause, and move through your playback lists by using the SMTC controls. Get an instance of the SMTC by accessing the **MediaPlayer** object's [SystemMediaTransportControls](../windows.media.playback/mediaplayer_systemmediatransportcontrols.md) property. For how-to guidance on using the SMTC from your app, see [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols).
For some scenarios, you may want to disable automatic integration with the SMTC. In this case, you should disable the **MediaPlayer** object's [CommandManager](../windows.media.playback/mediaplayer_commandmanager.md) by setting the [IsEnabled](../windows.media.playback/mediaplaybackcommandmanager_isenabled.md) property to false. Call [GetForCurrentView](systemmediatransportcontrols_getforcurrentview.md) to get an instance of the [SystemMediaTransportControls](systemmediatransportcontrols.md) for current view. You will also need to get an instance this way if you are targeting an older version of Windows. For how-to guidance on manually controlling the SMTC, see [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls).
## -examples
## -see-also
[Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols), [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.SystemMediaTransportControls
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls
+
+## -description
+Represents an object that enables integrate with the system media transport controls and support for media commands.
+
+## -remarks
+The [SystemMediaTransportControls](systemmediatransportcontrols.md) replaces the [MediaControl](mediacontrol.md) class. In Windows 8.1 and later, you should use this control instead of [MediaControl](mediacontrol.md) to interact with the system transport controls. The system transport controls enable music application developers to hook into a system-wide transport control. The system transport control allows a user to control a music application that is in the background as well as get and set the current information on which track is playing.
+
+Starting with Windows 10, version 1607, UWP apps that use the [MediaPlayer](../windows.media.playback/mediaplayer.md) class or [AudioGraph](../windows.media.audio/audiograph.md) class to play media are automatically integrated with the SMTC by default. Simply instantiate a new instance of **MediaPlayer** and assign a [MediaSource](../windows.media.core/mediasource.md), [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md), or [MediaPlaybackList](../windows.media.playback/mediaplaybacklist.md) to the player's [Source](../windows.media.playback/mediaplayer_source.md) property and the user will see your app name in the SMTC and can play, pause, and move through your playback lists by using the SMTC controls. Get an instance of the SMTC by accessing the **MediaPlayer** object's [SystemMediaTransportControls](../windows.media.playback/mediaplayer_systemmediatransportcontrols.md) property. For how-to guidance on using the SMTC from your app, see [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols).
+
+For some scenarios, you may want to disable automatic integration with the SMTC. In this case, you should disable the **MediaPlayer** object's [CommandManager](../windows.media.playback/mediaplayer_commandmanager.md) by setting the [IsEnabled](../windows.media.playback/mediaplaybackcommandmanager_isenabled.md) property to false. Call [GetForCurrentView](systemmediatransportcontrols_getforcurrentview.md) to get an instance of the [SystemMediaTransportControls](systemmediatransportcontrols.md) for current view. You will also need to get an instance this way if you are targeting an older version of Windows. For how-to guidance on manually controlling the SMTC, see [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls).
+
+## -examples
+
+## -see-also
+[Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols), [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls)
\ No newline at end of file
diff --git a/windows.media/systemmediatransportcontrols_autorepeatmode.md b/windows.media/systemmediatransportcontrols_autorepeatmode.md
index 55364870e0..6cb35d3333 100644
--- a/windows.media/systemmediatransportcontrols_autorepeatmode.md
+++ b/windows.media/systemmediatransportcontrols_autorepeatmode.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.AutoRepeatMode
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.AutoRepeatMode
## -description
Gets or sets a value representing the current auto-repeat mode of the [SystemMediaTransportControls](systemmediatransportcontrols.md).
## -property-value
A value representing the current auto-repeat mode.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.AutoRepeatMode
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.AutoRepeatMode
+
+## -description
+Gets or sets a value representing the current auto-repeat mode of the [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+## -property-value
+A value representing the current auto-repeat mode.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_autorepeatmodechangerequested.md b/windows.media/systemmediatransportcontrols_autorepeatmodechangerequested.md
index b4bd55c946..896527df91 100644
--- a/windows.media/systemmediatransportcontrols_autorepeatmodechangerequested.md
+++ b/windows.media/systemmediatransportcontrols_autorepeatmodechangerequested.md
@@ -1,3 +1,20 @@
----
-api-id: E:Windows.Media.SystemMediaTransportControls.AutoRepeatModeChangeRequested
--api-type: winrt event
----
# Windows.Media.SystemMediaTransportControls.AutoRepeatModeChangeRequested
## -description
Occurs when the user modifies the [SystemMediaTransportControls](systemmediatransportcontrols.md) auto-repeat mode.
## -remarks
Registering for this event causes an app to be notified when the **SystemMediaTransportControls** auto-repeat mode changes. An app can change its auto-repeat behavior based on the request or ignore the request and update the **SystemMediaTransportControls** by setting the [AutoRepeatMode](mediaplaybackautorepeatmode.md) property to a value that reflects the app's actual auto-repeat state.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.SystemMediaTransportControls.AutoRepeatModeChangeRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.AutoRepeatModeChangeRequested
+
+## -description
+Occurs when the user modifies the [SystemMediaTransportControls](systemmediatransportcontrols.md) auto-repeat mode.
+
+## -remarks
+Registering for this event causes an app to be notified when the **SystemMediaTransportControls** auto-repeat mode changes. An app can change its auto-repeat behavior based on the request or ignore the request and update the **SystemMediaTransportControls** by setting the [AutoRepeatMode](mediaplaybackautorepeatmode.md) property to a value that reflects the app's actual auto-repeat state.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_buttonpressed.md b/windows.media/systemmediatransportcontrols_buttonpressed.md
index bb6aa8feb3..45d1be026b 100644
--- a/windows.media/systemmediatransportcontrols_buttonpressed.md
+++ b/windows.media/systemmediatransportcontrols_buttonpressed.md
@@ -1,3 +1,21 @@
----
-api-id: E:Windows.Media.SystemMediaTransportControls.ButtonPressed
--api-type: winrt event
----
# Windows.Media.SystemMediaTransportControls.ButtonPressed
## -description
Occurs when a button is pressed on the [SystemMediaTransportControls](systemmediatransportcontrols.md).
## -remarks
Starting with Windows 10, version 1607, UWP apps that use the [MediaPlayer](../windows.media.playback/mediaplayer.md) class or [AudioGraph](../windows.media.audio/audiograph.md) class to play media are automatically integrated with the SMTC by default. For some scenarios, you may want to manually control the SMTC. In this case, you should **ButtonPressed** event to be notified that the user has pressed one of the SMTC buttons. For how-to guidance on manually controlling the SMTC, see [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls).
## -examples
## -see-also
[Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls)
\ No newline at end of file
+---
+-api-id: E:Windows.Media.SystemMediaTransportControls.ButtonPressed
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.ButtonPressed
+
+## -description
+Occurs when a button is pressed on the [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+## -remarks
+Starting with Windows 10, version 1607, UWP apps that use the [MediaPlayer](../windows.media.playback/mediaplayer.md) class or [AudioGraph](../windows.media.audio/audiograph.md) class to play media are automatically integrated with the SMTC by default. For some scenarios, you may want to manually control the SMTC. In this case, you should **ButtonPressed** event to be notified that the user has pressed one of the SMTC buttons. For how-to guidance on manually controlling the SMTC, see [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls).
+
+## -examples
+
+## -see-also
+[Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls)
\ No newline at end of file
diff --git a/windows.media/systemmediatransportcontrols_displayupdater.md b/windows.media/systemmediatransportcontrols_displayupdater.md
index 035eeee23d..160127aaf3 100644
--- a/windows.media/systemmediatransportcontrols_displayupdater.md
+++ b/windows.media/systemmediatransportcontrols_displayupdater.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.DisplayUpdater
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.DisplayUpdater
## -description
Gets the display updater for the [SystemMediaTransportControls](systemmediatransportcontrols.md) which enable updating the information displayed about the currently playing song.
## -property-value
The display updater for the [SystemMediaTransportControls](systemmediatransportcontrols.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.DisplayUpdater
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.DisplayUpdater
+
+## -description
+Gets the display updater for the [SystemMediaTransportControls](systemmediatransportcontrols.md) which enable updating the information displayed about the currently playing song.
+
+## -property-value
+The display updater for the [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_getforcurrentview_1363600702.md b/windows.media/systemmediatransportcontrols_getforcurrentview_1363600702.md
index 71ea836614..fb255fe40b 100644
--- a/windows.media/systemmediatransportcontrols_getforcurrentview_1363600702.md
+++ b/windows.media/systemmediatransportcontrols_getforcurrentview_1363600702.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.SystemMediaTransportControls.GetForCurrentView
--api-type: winrt method
----
# Windows.Media.SystemMediaTransportControls.GetForCurrentView
## -description
The system transport controls for the current view.
## -returns
The system transport controls for the current view.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.SystemMediaTransportControls.GetForCurrentView
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.GetForCurrentView
+
+## -description
+The system transport controls for the current view.
+
+## -returns
+The system transport controls for the current view.
+
+## -remarks
+
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_ischanneldownenabled.md b/windows.media/systemmediatransportcontrols_ischanneldownenabled.md
index f0ef91af65..9764b73588 100644
--- a/windows.media/systemmediatransportcontrols_ischanneldownenabled.md
+++ b/windows.media/systemmediatransportcontrols_ischanneldownenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsChannelDownEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsChannelDownEnabled
## -description
Gets or sets a value that specifies if the channel down button is supported.
## -property-value
**true** if the channel down button is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsChannelDownEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsChannelDownEnabled
+
+## -description
+Gets or sets a value that specifies if the channel down button is supported.
+
+## -property-value
+**true** if the channel down button is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_ischannelupenabled.md b/windows.media/systemmediatransportcontrols_ischannelupenabled.md
index eebfbd2256..bb7fa06f3c 100644
--- a/windows.media/systemmediatransportcontrols_ischannelupenabled.md
+++ b/windows.media/systemmediatransportcontrols_ischannelupenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsChannelUpEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsChannelUpEnabled
## -description
Gets or sets a value that specifies if the channel up button is supported.
## -property-value
**true** if the channel up button is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsChannelUpEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsChannelUpEnabled
+
+## -description
+Gets or sets a value that specifies if the channel up button is supported.
+
+## -property-value
+**true** if the channel up button is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_isenabled.md b/windows.media/systemmediatransportcontrols_isenabled.md
index 349ce99624..d49c9d89d2 100644
--- a/windows.media/systemmediatransportcontrols_isenabled.md
+++ b/windows.media/systemmediatransportcontrols_isenabled.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsEnabled
## -description
Enables and disables the system media transport controls for the app.
## -property-value
**true** if the system transport controls are enabled for the app; otherwise, **false**.
## -remarks
Setting [IsEnabled](systemmediatransportcontrols_isenabled.md) to **false** will disable the apps support for the system media transport controls, so the controls will not show. Setting [IsEnabled](systemmediatransportcontrols_isenabled.md) to **true** will re-enable the controls for the app.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsEnabled
+
+## -description
+Enables and disables the system media transport controls for the app.
+
+## -property-value
+**true** if the system transport controls are enabled for the app; otherwise, **false**.
+
+## -remarks
+Setting [IsEnabled](systemmediatransportcontrols_isenabled.md) to **false** will disable the apps support for the system media transport controls, so the controls will not show. Setting [IsEnabled](systemmediatransportcontrols_isenabled.md) to **true** will re-enable the controls for the app.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_isfastforwardenabled.md b/windows.media/systemmediatransportcontrols_isfastforwardenabled.md
index 470e58e62f..bc3e976c44 100644
--- a/windows.media/systemmediatransportcontrols_isfastforwardenabled.md
+++ b/windows.media/systemmediatransportcontrols_isfastforwardenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsFastForwardEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsFastForwardEnabled
## -description
Gets or sets a value that specifies if the fast forward button is supported.
## -property-value
**true** if the fast forward button is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsFastForwardEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsFastForwardEnabled
+
+## -description
+Gets or sets a value that specifies if the fast forward button is supported.
+
+## -property-value
+**true** if the fast forward button is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_isnextenabled.md b/windows.media/systemmediatransportcontrols_isnextenabled.md
index 23d81c3f34..d40424fab6 100644
--- a/windows.media/systemmediatransportcontrols_isnextenabled.md
+++ b/windows.media/systemmediatransportcontrols_isnextenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsNextEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsNextEnabled
## -description
Gets or sets a value that specifies if the next button is supported.
## -property-value
**true** if the next button is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsNextEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsNextEnabled
+
+## -description
+Gets or sets a value that specifies if the next button is supported.
+
+## -property-value
+**true** if the next button is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_ispauseenabled.md b/windows.media/systemmediatransportcontrols_ispauseenabled.md
index 9983f36f5c..7dbaca83c1 100644
--- a/windows.media/systemmediatransportcontrols_ispauseenabled.md
+++ b/windows.media/systemmediatransportcontrols_ispauseenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsPauseEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsPauseEnabled
## -description
Gets or sets a value that specifies if the pause button is supported.**true** if the pause button is supported; otherwise, **false**.
## -property-value
**true** if the pause button is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsPauseEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsPauseEnabled
+
+## -description
+Gets or sets a value that specifies if the pause button is supported.**true** if the pause button is supported; otherwise, **false**.
+
+## -property-value
+**true** if the pause button is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_isplayenabled.md b/windows.media/systemmediatransportcontrols_isplayenabled.md
index 4a185f0da3..01a6cb90ad 100644
--- a/windows.media/systemmediatransportcontrols_isplayenabled.md
+++ b/windows.media/systemmediatransportcontrols_isplayenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsPlayEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsPlayEnabled
## -description
Gets or sets a value that specifies if the play button is supported.
## -property-value
**true** if the play is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsPlayEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsPlayEnabled
+
+## -description
+Gets or sets a value that specifies if the play button is supported.
+
+## -property-value
+**true** if the play is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_ispreviousenabled.md b/windows.media/systemmediatransportcontrols_ispreviousenabled.md
index b94081396c..dbf504aa0e 100644
--- a/windows.media/systemmediatransportcontrols_ispreviousenabled.md
+++ b/windows.media/systemmediatransportcontrols_ispreviousenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsPreviousEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsPreviousEnabled
## -description
Gets or sets a value that specifies if the previous button is supported.
## -property-value
**true** if the previous button is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsPreviousEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsPreviousEnabled
+
+## -description
+Gets or sets a value that specifies if the previous button is supported.
+
+## -property-value
+**true** if the previous button is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_isrecordenabled.md b/windows.media/systemmediatransportcontrols_isrecordenabled.md
index e7a295a7d4..ba3b13a381 100644
--- a/windows.media/systemmediatransportcontrols_isrecordenabled.md
+++ b/windows.media/systemmediatransportcontrols_isrecordenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsRecordEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsRecordEnabled
## -description
Gets or sets a value that specifies if the record button is supported.**true** if the record button is supported; otherwise, **false**.
## -property-value
**true** if the record button is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsRecordEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsRecordEnabled
+
+## -description
+Gets or sets a value that specifies if the record button is supported.**true** if the record button is supported; otherwise, **false**.
+
+## -property-value
+**true** if the record button is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_isrewindenabled.md b/windows.media/systemmediatransportcontrols_isrewindenabled.md
index 4c911f8693..0ee61135af 100644
--- a/windows.media/systemmediatransportcontrols_isrewindenabled.md
+++ b/windows.media/systemmediatransportcontrols_isrewindenabled.md
@@ -1,3 +1,24 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsRewindEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsRewindEnabled
## -description
Gets or sets a value that specifies if the rewind button is supported.
## -property-value
**true** if the rewind button is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsRewindEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsRewindEnabled
+
+## -description
+Gets or sets a value that specifies if the rewind button is supported.
+
+
+
+## -property-value
+**true** if the rewind button is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_isstopenabled.md b/windows.media/systemmediatransportcontrols_isstopenabled.md
index 28a9f24aa6..88cf25c7d2 100644
--- a/windows.media/systemmediatransportcontrols_isstopenabled.md
+++ b/windows.media/systemmediatransportcontrols_isstopenabled.md
@@ -1,3 +1,24 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.IsStopEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.IsStopEnabled
## -description
Gets or sets a value that specifies if the stop button is supported.
## -property-value
**true** if the stop button is supported; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.IsStopEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.IsStopEnabled
+
+## -description
+Gets or sets a value that specifies if the stop button is supported.
+
+
+
+## -property-value
+**true** if the stop button is supported; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_playbackpositionchangerequested.md b/windows.media/systemmediatransportcontrols_playbackpositionchangerequested.md
index bd214d0df3..6633d6418c 100644
--- a/windows.media/systemmediatransportcontrols_playbackpositionchangerequested.md
+++ b/windows.media/systemmediatransportcontrols_playbackpositionchangerequested.md
@@ -1,3 +1,20 @@
----
-api-id: E:Windows.Media.SystemMediaTransportControls.PlaybackPositionChangeRequested
--api-type: winrt event
----
# Windows.Media.SystemMediaTransportControls.PlaybackPositionChangeRequested
## -description
Occurs when the user modifies the playback position of the [SystemMediaTransportControls](systemmediatransportcontrols.md).
## -remarks
Registering for this event causes an app to be notified when the **SystemMediaTransportControls** playback position changes. An app can change its auto-repeat behavior based on the request or ignore the request and update the **SystemMediaTransportControls** by populating a [SystemMediaTransportControlsTimelineProperties](systemmediatransportcontrolstimelineproperties.md) object with values indicating the actual playback position and calling [SystemMediaTransportControls::UpdateTimelineProperties](systemmediatransportcontrols_updatetimelineproperties.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.SystemMediaTransportControls.PlaybackPositionChangeRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.PlaybackPositionChangeRequested
+
+## -description
+Occurs when the user modifies the playback position of the [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+## -remarks
+Registering for this event causes an app to be notified when the **SystemMediaTransportControls** playback position changes. An app can change its auto-repeat behavior based on the request or ignore the request and update the **SystemMediaTransportControls** by populating a [SystemMediaTransportControlsTimelineProperties](systemmediatransportcontrolstimelineproperties.md) object with values indicating the actual playback position and calling [SystemMediaTransportControls::UpdateTimelineProperties](systemmediatransportcontrols_updatetimelineproperties.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_playbackrate.md b/windows.media/systemmediatransportcontrols_playbackrate.md
index cb548bf4b4..ba76235f0d 100644
--- a/windows.media/systemmediatransportcontrols_playbackrate.md
+++ b/windows.media/systemmediatransportcontrols_playbackrate.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.PlaybackRate
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.PlaybackRate
## -description
Gets or sets the playback rate of the [SystemMediaTransportControls](systemmediatransportcontrols.md).
## -property-value
The playback rate of the [SystemMediaTransportControls](systemmediatransportcontrols.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.PlaybackRate
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.PlaybackRate
+
+## -description
+Gets or sets the playback rate of the [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+## -property-value
+The playback rate of the [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_playbackratechangerequested.md b/windows.media/systemmediatransportcontrols_playbackratechangerequested.md
index 5d4b34dd78..0dbeb0b55b 100644
--- a/windows.media/systemmediatransportcontrols_playbackratechangerequested.md
+++ b/windows.media/systemmediatransportcontrols_playbackratechangerequested.md
@@ -1,3 +1,20 @@
----
-api-id: E:Windows.Media.SystemMediaTransportControls.PlaybackRateChangeRequested
--api-type: winrt event
----
# Windows.Media.SystemMediaTransportControls.PlaybackRateChangeRequested
## -description
Occurs when the user modifies the [SystemMediaTransportControls](systemmediatransportcontrols.md) playback rate.
## -remarks
Registering for this event causes an app to be notified when the **SystemMediaTransportControls** playback rate changes. An app can change its playback rate based on the request or ignore the request and update the **SystemMediaTransportControls** by setting the [PlaybackRate](systemmediatransportcontrols_playbackrate.md) property to a value that reflects the app's actual playback rate.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.SystemMediaTransportControls.PlaybackRateChangeRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.PlaybackRateChangeRequested
+
+## -description
+Occurs when the user modifies the [SystemMediaTransportControls](systemmediatransportcontrols.md) playback rate.
+
+## -remarks
+Registering for this event causes an app to be notified when the **SystemMediaTransportControls** playback rate changes. An app can change its playback rate based on the request or ignore the request and update the **SystemMediaTransportControls** by setting the [PlaybackRate](systemmediatransportcontrols_playbackrate.md) property to a value that reflects the app's actual playback rate.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_playbackstatus.md b/windows.media/systemmediatransportcontrols_playbackstatus.md
index 1870e2496e..82b0000c39 100644
--- a/windows.media/systemmediatransportcontrols_playbackstatus.md
+++ b/windows.media/systemmediatransportcontrols_playbackstatus.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.PlaybackStatus
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.PlaybackStatus
## -description
Gets the playback status of the media.
## -property-value
The playback status.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.PlaybackStatus
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.PlaybackStatus
+
+## -description
+Gets the playback status of the media.
+
+## -property-value
+The playback status.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_propertychanged.md b/windows.media/systemmediatransportcontrols_propertychanged.md
index f370852251..2b8ab662cc 100644
--- a/windows.media/systemmediatransportcontrols_propertychanged.md
+++ b/windows.media/systemmediatransportcontrols_propertychanged.md
@@ -1,3 +1,20 @@
----
-api-id: E:Windows.Media.SystemMediaTransportControls.PropertyChanged
--api-type: winrt event
----
# Windows.Media.SystemMediaTransportControls.PropertyChanged
## -description
Occurs when a property on the [SystemMediaTransportControls](systemmediatransportcontrols.md) has changed.
## -remarks
Use the [Property](systemmediatransportcontrolspropertychangedeventargs_property.md) value of the event [SystemMediaTransportControlsPropertyChangedEventArgs](systemmediatransportcontrolspropertychangedeventargs.md) to determine which property has changed.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.SystemMediaTransportControls.PropertyChanged
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.PropertyChanged
+
+## -description
+Occurs when a property on the [SystemMediaTransportControls](systemmediatransportcontrols.md) has changed.
+
+## -remarks
+Use the [Property](systemmediatransportcontrolspropertychangedeventargs_property.md) value of the event [SystemMediaTransportControlsPropertyChangedEventArgs](systemmediatransportcontrolspropertychangedeventargs.md) to determine which property has changed.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_shuffleenabled.md b/windows.media/systemmediatransportcontrols_shuffleenabled.md
index e1691fe300..ca1c3693b6 100644
--- a/windows.media/systemmediatransportcontrols_shuffleenabled.md
+++ b/windows.media/systemmediatransportcontrols_shuffleenabled.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.ShuffleEnabled
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.ShuffleEnabled
## -description
Gets or sets a value representing the current shuffle state of the [SystemMediaTransportControls](systemmediatransportcontrols.md).
## -property-value
True if the [SystemMediaTransportControls](systemmediatransportcontrols.md) have shuffle enabled; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.ShuffleEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.ShuffleEnabled
+
+## -description
+Gets or sets a value representing the current shuffle state of the [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+## -property-value
+True if the [SystemMediaTransportControls](systemmediatransportcontrols.md) have shuffle enabled; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_shuffleenabledchangerequested.md b/windows.media/systemmediatransportcontrols_shuffleenabledchangerequested.md
index 46d61b7c64..5bf509c5ce 100644
--- a/windows.media/systemmediatransportcontrols_shuffleenabledchangerequested.md
+++ b/windows.media/systemmediatransportcontrols_shuffleenabledchangerequested.md
@@ -1,3 +1,20 @@
----
-api-id: E:Windows.Media.SystemMediaTransportControls.ShuffleEnabledChangeRequested
--api-type: winrt event
----
# Windows.Media.SystemMediaTransportControls.ShuffleEnabledChangeRequested
## -description
Occurs when the user modifies the [SystemMediaTransportControls](systemmediatransportcontrols.md) shuffle state.
## -remarks
Registering for this event causes an app to be notified when the **SystemMediaTransportControls** shuffle state changes. An app can change its shuffle state based on the request or ignore the request and update the **SystemMediaTransportControls** by setting the [ShuffleEnabled](systemmediatransportcontrols_shuffleenabled.md) property to a value that reflects the app's actual shuffle state.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: E:Windows.Media.SystemMediaTransportControls.ShuffleEnabledChangeRequested
+-api-type: winrt event
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.ShuffleEnabledChangeRequested
+
+## -description
+Occurs when the user modifies the [SystemMediaTransportControls](systemmediatransportcontrols.md) shuffle state.
+
+## -remarks
+Registering for this event causes an app to be notified when the **SystemMediaTransportControls** shuffle state changes. An app can change its shuffle state based on the request or ignore the request and update the **SystemMediaTransportControls** by setting the [ShuffleEnabled](systemmediatransportcontrols_shuffleenabled.md) property to a value that reflects the app's actual shuffle state.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_soundlevel.md b/windows.media/systemmediatransportcontrols_soundlevel.md
index 3adf5d3493..3d64c02dad 100644
--- a/windows.media/systemmediatransportcontrols_soundlevel.md
+++ b/windows.media/systemmediatransportcontrols_soundlevel.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControls.SoundLevel
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControls.SoundLevel
## -description
Gets the sound level of the media for the capture and render streams.
## -property-value
The sound level.
## -remarks
Music and media capture apps should monitor the [SoundLevel](systemmediatransportcontrols_soundlevel.md) to determine whether the audio streams on the app have been [Muted](soundlevel.md). For apps using the [MediaCapture](../windows.media.capture/mediacapture.md) object, capture will be automatically stopped when the capture streams of the app are muted. Capture is not re-started automatically when the audio streams are unmuted, so the [SoundLevel](systemmediatransportcontrols_soundlevel.md) changed notification can be used to restart capture. Use the [PropertyChanged](systemmediatransportcontrols_propertychanged.md) event to determine when the [SoundLevel](systemmediatransportcontrols_soundlevel.md) property changes.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControls.SoundLevel
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.SoundLevel
+
+## -description
+Gets the sound level of the media for the capture and render streams.
+
+## -property-value
+The sound level.
+
+## -remarks
+Music and media capture apps should monitor the [SoundLevel](systemmediatransportcontrols_soundlevel.md) to determine whether the audio streams on the app have been [Muted](soundlevel.md). For apps using the [MediaCapture](../windows.media.capture/mediacapture.md) object, capture will be automatically stopped when the capture streams of the app are muted. Capture is not re-started automatically when the audio streams are unmuted, so the [SoundLevel](systemmediatransportcontrols_soundlevel.md) changed notification can be used to restart capture. Use the [PropertyChanged](systemmediatransportcontrols_propertychanged.md) event to determine when the [SoundLevel](systemmediatransportcontrols_soundlevel.md) property changes.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrols_updatetimelineproperties_1933562266.md b/windows.media/systemmediatransportcontrols_updatetimelineproperties_1933562266.md
index 5380fb9cf9..da5985b162 100644
--- a/windows.media/systemmediatransportcontrols_updatetimelineproperties_1933562266.md
+++ b/windows.media/systemmediatransportcontrols_updatetimelineproperties_1933562266.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Media.SystemMediaTransportControls.UpdateTimelineProperties(Windows.Media.SystemMediaTransportControlsTimelineProperties)
--api-type: winrt method
----
# Windows.Media.SystemMediaTransportControls.UpdateTimelineProperties
## -description
Updates the [SystemMediaTransportControls](systemmediatransportcontrols.md) timeline properties with the values in the provided object.
## -parameters
### -param timelineProperties
The object representing the new timeline property values.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.SystemMediaTransportControls.UpdateTimelineProperties(Windows.Media.SystemMediaTransportControlsTimelineProperties)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.SystemMediaTransportControls.UpdateTimelineProperties
+
+## -description
+Updates the [SystemMediaTransportControls](systemmediatransportcontrols.md) timeline properties with the values in the provided object.
+
+## -parameters
+### -param timelineProperties
+The object representing the new timeline property values.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsbuttonpressedeventargs.md b/windows.media/systemmediatransportcontrolsbuttonpressedeventargs.md
index 703052510e..3976431f55 100644
--- a/windows.media/systemmediatransportcontrolsbuttonpressedeventargs.md
+++ b/windows.media/systemmediatransportcontrolsbuttonpressedeventargs.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.SystemMediaTransportControlsButtonPressedEventArgs
--api-type: winrt class
----
# Windows.Media.SystemMediaTransportControlsButtonPressedEventArgs
## -description
Provides data for the [SystemMediaTransportControls.ButtonPressed](systemmediatransportcontrols_buttonpressed.md) event.
## -remarks
The [Button](systemmediatransportcontrolsbuttonpressedeventargs_button.md) property indicates which button was pressed.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.SystemMediaTransportControlsButtonPressedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsButtonPressedEventArgs
+
+## -description
+Provides data for the [SystemMediaTransportControls.ButtonPressed](systemmediatransportcontrols_buttonpressed.md) event.
+
+## -remarks
+The [Button](systemmediatransportcontrolsbuttonpressedeventargs_button.md) property indicates which button was pressed.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsbuttonpressedeventargs_button.md b/windows.media/systemmediatransportcontrolsbuttonpressedeventargs_button.md
index 13bdf8938d..9bbdf382d3 100644
--- a/windows.media/systemmediatransportcontrolsbuttonpressedeventargs_button.md
+++ b/windows.media/systemmediatransportcontrolsbuttonpressedeventargs_button.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsButtonPressedEventArgs.Button
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsButtonPressedEventArgs.Button
## -description
Gets the button on the [SystemMediaTransportControls](systemmediatransportcontrols.md) that was pressed.
## -property-value
The button that was pressed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsButtonPressedEventArgs.Button
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsButtonPressedEventArgs.Button
+
+## -description
+Gets the button on the [SystemMediaTransportControls](systemmediatransportcontrols.md) that was pressed.
+
+## -property-value
+The button that was pressed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsdisplayupdater.md b/windows.media/systemmediatransportcontrolsdisplayupdater.md
index 096140faba..46192b5239 100644
--- a/windows.media/systemmediatransportcontrolsdisplayupdater.md
+++ b/windows.media/systemmediatransportcontrolsdisplayupdater.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.SystemMediaTransportControlsDisplayUpdater
--api-type: winrt class
----
# Windows.Media.SystemMediaTransportControlsDisplayUpdater
## -description
Provides functionality to update the music information that is displayed on the [SystemMediaTransportControls](systemmediatransportcontrols.md).
## -remarks
Starting with Windows 10, version 1607, UWP apps that use the [MediaPlayer](../windows.media.playback/mediaplayer.md) class to play media are automatically integrated with the SMTC by default. With automatic integration, you update the media metadata, such as the title of a media item, using the [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) class. Call [GetDisplayProperties](../windows.media.playback/mediaplaybackitem_getdisplayproperties.md) to get an instance of the [MediaItemDisplayProperties](../windows.media.playback/mediaitemdisplayproperties.md) class. Update the object with the values you want to be displayed for the item in the SMTC and then call [ApplyDisplayProperties](../windows.media.playback/mediaplaybackitem_applydisplayproperties.md) to commit the changes. For how-to guidance on using the SMTC from your app, see [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols).
If you are disabling manual SMTC integration or you are targeting an older version of Windows, you must use the [SystemMediaTransportControls.DisplayUpdater](systemmediatransportcontrols_displayupdater.md) to update the media metadata. For how-to guidance on manually controlling the SMTC, see [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls).
## -examples
## -see-also
[Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols), [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.SystemMediaTransportControlsDisplayUpdater
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsDisplayUpdater
+
+## -description
+Provides functionality to update the music information that is displayed on the [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+## -remarks
+Starting with Windows 10, version 1607, UWP apps that use the [MediaPlayer](../windows.media.playback/mediaplayer.md) class to play media are automatically integrated with the SMTC by default. With automatic integration, you update the media metadata, such as the title of a media item, using the [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) class. Call [GetDisplayProperties](../windows.media.playback/mediaplaybackitem_getdisplayproperties.md) to get an instance of the [MediaItemDisplayProperties](../windows.media.playback/mediaitemdisplayproperties.md) class. Update the object with the values you want to be displayed for the item in the SMTC and then call [ApplyDisplayProperties](../windows.media.playback/mediaplaybackitem_applydisplayproperties.md) to commit the changes. For how-to guidance on using the SMTC from your app, see [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols).
+
+If you are disabling manual SMTC integration or you are targeting an older version of Windows, you must use the [SystemMediaTransportControls.DisplayUpdater](systemmediatransportcontrols_displayupdater.md) to update the media metadata. For how-to guidance on manually controlling the SMTC, see [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls).
+
+## -examples
+
+## -see-also
+[Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols), [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls)
\ No newline at end of file
diff --git a/windows.media/systemmediatransportcontrolsdisplayupdater_appmediaid.md b/windows.media/systemmediatransportcontrolsdisplayupdater_appmediaid.md
index 285157fbea..ebe2d28505 100644
--- a/windows.media/systemmediatransportcontrolsdisplayupdater_appmediaid.md
+++ b/windows.media/systemmediatransportcontrolsdisplayupdater_appmediaid.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.AppMediaId
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsDisplayUpdater.AppMediaId
## -description
Gets or sets the media id of the app.
## -property-value
The media id.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.AppMediaId
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsDisplayUpdater.AppMediaId
+
+## -description
+Gets or sets the media id of the app.
+
+## -property-value
+The media id.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsdisplayupdater_clearall_1180497524.md b/windows.media/systemmediatransportcontrolsdisplayupdater_clearall_1180497524.md
index a5361a7853..6b681b8e50 100644
--- a/windows.media/systemmediatransportcontrolsdisplayupdater_clearall_1180497524.md
+++ b/windows.media/systemmediatransportcontrolsdisplayupdater_clearall_1180497524.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.SystemMediaTransportControlsDisplayUpdater.ClearAll
--api-type: winrt method
----
# Windows.Media.SystemMediaTransportControlsDisplayUpdater.ClearAll
## -description
Clears out all of the media metadata.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.SystemMediaTransportControlsDisplayUpdater.ClearAll
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsDisplayUpdater.ClearAll
+
+## -description
+Clears out all of the media metadata.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsdisplayupdater_copyfromfileasync_1101752768.md b/windows.media/systemmediatransportcontrolsdisplayupdater_copyfromfileasync_1101752768.md
index d981cd04ec..f82461c8d3 100644
--- a/windows.media/systemmediatransportcontrolsdisplayupdater_copyfromfileasync_1101752768.md
+++ b/windows.media/systemmediatransportcontrolsdisplayupdater_copyfromfileasync_1101752768.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Media.SystemMediaTransportControlsDisplayUpdater.CopyFromFileAsync(Windows.Media.MediaPlaybackType,Windows.Storage.StorageFile)
--api-type: winrt method
----
# Windows.Media.SystemMediaTransportControlsDisplayUpdater.CopyFromFileAsync
## -description
Initialize the media properties using the specified file.
## -parameters
### -param type
The type of media.
### -param source
The file to initialize the media properties.
## -returns
When this method completes, it returns a boolean value that indicates **true** if the operation succeeded; otherwise, **false**.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.SystemMediaTransportControlsDisplayUpdater.CopyFromFileAsync(Windows.Media.MediaPlaybackType,Windows.Storage.StorageFile)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsDisplayUpdater.CopyFromFileAsync
+
+## -description
+Initialize the media properties using the specified file.
+
+## -parameters
+### -param type
+The type of media.
+
+### -param source
+The file to initialize the media properties.
+
+## -returns
+When this method completes, it returns a boolean value that indicates **true** if the operation succeeded; otherwise, **false**.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsdisplayupdater_imageproperties.md b/windows.media/systemmediatransportcontrolsdisplayupdater_imageproperties.md
index 1ab7caeeb6..87e06b2123 100644
--- a/windows.media/systemmediatransportcontrolsdisplayupdater_imageproperties.md
+++ b/windows.media/systemmediatransportcontrolsdisplayupdater_imageproperties.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.ImageProperties
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsDisplayUpdater.ImageProperties
## -description
Gets the image properties associated with the currently playing media.
## -property-value
The image properties.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.ImageProperties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsDisplayUpdater.ImageProperties
+
+## -description
+Gets the image properties associated with the currently playing media.
+
+## -property-value
+The image properties.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsdisplayupdater_musicproperties.md b/windows.media/systemmediatransportcontrolsdisplayupdater_musicproperties.md
index 9580f19196..34988fbc45 100644
--- a/windows.media/systemmediatransportcontrolsdisplayupdater_musicproperties.md
+++ b/windows.media/systemmediatransportcontrolsdisplayupdater_musicproperties.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.MusicProperties
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsDisplayUpdater.MusicProperties
## -description
Gets the music properties associated with the currently playing media.
## -property-value
The music properties.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.MusicProperties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsDisplayUpdater.MusicProperties
+
+## -description
+Gets the music properties associated with the currently playing media.
+
+## -property-value
+The music properties.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsdisplayupdater_thumbnail.md b/windows.media/systemmediatransportcontrolsdisplayupdater_thumbnail.md
index 0a76b9d50e..f978ed56cd 100644
--- a/windows.media/systemmediatransportcontrolsdisplayupdater_thumbnail.md
+++ b/windows.media/systemmediatransportcontrolsdisplayupdater_thumbnail.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.Thumbnail
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsDisplayUpdater.Thumbnail
## -description
Gets or sets thumbnail image associated with the currently playing media.
## -property-value
The thumbnail image.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.Thumbnail
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsDisplayUpdater.Thumbnail
+
+## -description
+Gets or sets thumbnail image associated with the currently playing media.
+
+## -property-value
+The thumbnail image.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsdisplayupdater_type.md b/windows.media/systemmediatransportcontrolsdisplayupdater_type.md
index 9bbc9c0b6d..b649f208f8 100644
--- a/windows.media/systemmediatransportcontrolsdisplayupdater_type.md
+++ b/windows.media/systemmediatransportcontrolsdisplayupdater_type.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.Type
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsDisplayUpdater.Type
## -description
Gets or sets the type of media.
## -property-value
The type of media.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.Type
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsDisplayUpdater.Type
+
+## -description
+Gets or sets the type of media.
+
+## -property-value
+The type of media.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsdisplayupdater_update_1590299467.md b/windows.media/systemmediatransportcontrolsdisplayupdater_update_1590299467.md
index 196de31eea..26b813bb65 100644
--- a/windows.media/systemmediatransportcontrolsdisplayupdater_update_1590299467.md
+++ b/windows.media/systemmediatransportcontrolsdisplayupdater_update_1590299467.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.SystemMediaTransportControlsDisplayUpdater.Update
--api-type: winrt method
----
# Windows.Media.SystemMediaTransportControlsDisplayUpdater.Update
## -description
Updates the metadata for the currently playing media.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.SystemMediaTransportControlsDisplayUpdater.Update
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsDisplayUpdater.Update
+
+## -description
+Updates the metadata for the currently playing media.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolsdisplayupdater_videoproperties.md b/windows.media/systemmediatransportcontrolsdisplayupdater_videoproperties.md
index 5ca2e65fd5..6cc08aa487 100644
--- a/windows.media/systemmediatransportcontrolsdisplayupdater_videoproperties.md
+++ b/windows.media/systemmediatransportcontrolsdisplayupdater_videoproperties.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.VideoProperties
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsDisplayUpdater.VideoProperties
## -description
Gets the video properties associated with the currently playing media.
## -property-value
The video properties.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsDisplayUpdater.VideoProperties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsDisplayUpdater.VideoProperties
+
+## -description
+Gets the video properties associated with the currently playing media.
+
+## -property-value
+The video properties.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolspropertychangedeventargs.md b/windows.media/systemmediatransportcontrolspropertychangedeventargs.md
index 5da3703af9..718e24f995 100644
--- a/windows.media/systemmediatransportcontrolspropertychangedeventargs.md
+++ b/windows.media/systemmediatransportcontrolspropertychangedeventargs.md
@@ -1,3 +1,19 @@
----
-api-id: T:Windows.Media.SystemMediaTransportControlsPropertyChangedEventArgs
--api-type: winrt class
----
# Windows.Media.SystemMediaTransportControlsPropertyChangedEventArgs
## -description
Occurs when a property is changed on the [SystemMediaTransportControls](systemmediatransportcontrols.md).
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.SystemMediaTransportControlsPropertyChangedEventArgs
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsPropertyChangedEventArgs
+
+## -description
+Occurs when a property is changed on the [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolspropertychangedeventargs_property.md b/windows.media/systemmediatransportcontrolspropertychangedeventargs_property.md
index f731d26787..46c274b8da 100644
--- a/windows.media/systemmediatransportcontrolspropertychangedeventargs_property.md
+++ b/windows.media/systemmediatransportcontrolspropertychangedeventargs_property.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsPropertyChangedEventArgs.Property
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsPropertyChangedEventArgs.Property
## -description
The property that was changed on the [SystemMediaTransportControls](systemmediatransportcontrols.md).
## -property-value
The property that was changed.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsPropertyChangedEventArgs.Property
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsPropertyChangedEventArgs.Property
+
+## -description
+The property that was changed on the [SystemMediaTransportControls](systemmediatransportcontrols.md).
+
+## -property-value
+The property that was changed.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolstimelineproperties.md b/windows.media/systemmediatransportcontrolstimelineproperties.md
index ccc3169709..6c204c965c 100644
--- a/windows.media/systemmediatransportcontrolstimelineproperties.md
+++ b/windows.media/systemmediatransportcontrolstimelineproperties.md
@@ -1,3 +1,19 @@
----
-api-id: T:Windows.Media.SystemMediaTransportControlsTimelineProperties
--api-type: winrt class
----
# Windows.Media.SystemMediaTransportControlsTimelineProperties
## -description
Represents timeline properties of the [SystemMediaTransportControls](systemmediatransportcontrols.md). Pass an instance of this class to the [UpdateTimelineProperties](systemmediatransportcontrols_updatetimelineproperties.md) method to update the properties.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Media.SystemMediaTransportControlsTimelineProperties
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsTimelineProperties
+
+## -description
+Represents timeline properties of the [SystemMediaTransportControls](systemmediatransportcontrols.md). Pass an instance of this class to the [UpdateTimelineProperties](systemmediatransportcontrols_updatetimelineproperties.md) method to update the properties.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolstimelineproperties_endtime.md b/windows.media/systemmediatransportcontrolstimelineproperties_endtime.md
index 1d560302d0..141204178b 100644
--- a/windows.media/systemmediatransportcontrolstimelineproperties_endtime.md
+++ b/windows.media/systemmediatransportcontrolstimelineproperties_endtime.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsTimelineProperties.EndTime
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsTimelineProperties.EndTime
## -description
Gets or sets a value representing the end time of the currently playing media item.
## -property-value
A value representing the end time of the currently playing media item
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsTimelineProperties.EndTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsTimelineProperties.EndTime
+
+## -description
+Gets or sets a value representing the end time of the currently playing media item.
+
+## -property-value
+A value representing the end time of the currently playing media item
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolstimelineproperties_maxseektime.md b/windows.media/systemmediatransportcontrolstimelineproperties_maxseektime.md
index 2ffaf9fc99..7098c3649b 100644
--- a/windows.media/systemmediatransportcontrolstimelineproperties_maxseektime.md
+++ b/windows.media/systemmediatransportcontrolstimelineproperties_maxseektime.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsTimelineProperties.MaxSeekTime
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsTimelineProperties.MaxSeekTime
## -description
Gets or sets a value indicating the latest time within the currently playing media item to which the user can seek.
## -property-value
The latest time within the currently playing media item to which the user can seek.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsTimelineProperties.MaxSeekTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsTimelineProperties.MaxSeekTime
+
+## -description
+Gets or sets a value indicating the latest time within the currently playing media item to which the user can seek.
+
+## -property-value
+The latest time within the currently playing media item to which the user can seek.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolstimelineproperties_minseektime.md b/windows.media/systemmediatransportcontrolstimelineproperties_minseektime.md
index 0756256951..1235a4b516 100644
--- a/windows.media/systemmediatransportcontrolstimelineproperties_minseektime.md
+++ b/windows.media/systemmediatransportcontrolstimelineproperties_minseektime.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsTimelineProperties.MinSeekTime
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsTimelineProperties.MinSeekTime
## -description
Gets or sets a value indicating the earliest time within the currently playing media item to which the user can seek.
## -property-value
A value indicating the earliest time within the currently playing media item to which the user can seek.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsTimelineProperties.MinSeekTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsTimelineProperties.MinSeekTime
+
+## -description
+Gets or sets a value indicating the earliest time within the currently playing media item to which the user can seek.
+
+## -property-value
+A value indicating the earliest time within the currently playing media item to which the user can seek.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolstimelineproperties_position.md b/windows.media/systemmediatransportcontrolstimelineproperties_position.md
index a999c0ebf4..8a09b36064 100644
--- a/windows.media/systemmediatransportcontrolstimelineproperties_position.md
+++ b/windows.media/systemmediatransportcontrolstimelineproperties_position.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsTimelineProperties.Position
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsTimelineProperties.Position
## -description
Gets or sets a value representing the current playback position within the currently playing media item.
## -property-value
The current playback position within the currently playing media item.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsTimelineProperties.Position
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsTimelineProperties.Position
+
+## -description
+Gets or sets a value representing the current playback position within the currently playing media item.
+
+## -property-value
+The current playback position within the currently playing media item.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolstimelineproperties_starttime.md b/windows.media/systemmediatransportcontrolstimelineproperties_starttime.md
index 7004177f40..720c178645 100644
--- a/windows.media/systemmediatransportcontrolstimelineproperties_starttime.md
+++ b/windows.media/systemmediatransportcontrolstimelineproperties_starttime.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.SystemMediaTransportControlsTimelineProperties.StartTime
--api-type: winrt property
----
# Windows.Media.SystemMediaTransportControlsTimelineProperties.StartTime
## -description
Gets or sets a value representing the start time of the currently playing media item.
## -property-value
A value representing the start time of the currently playing media item.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.SystemMediaTransportControlsTimelineProperties.StartTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsTimelineProperties.StartTime
+
+## -description
+Gets or sets a value representing the start time of the currently playing media item.
+
+## -property-value
+A value representing the start time of the currently playing media item.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/systemmediatransportcontrolstimelineproperties_systemmediatransportcontrolstimelineproperties_1221375020.md b/windows.media/systemmediatransportcontrolstimelineproperties_systemmediatransportcontrolstimelineproperties_1221375020.md
index 1397d9da1f..1ef9be8c15 100644
--- a/windows.media/systemmediatransportcontrolstimelineproperties_systemmediatransportcontrolstimelineproperties_1221375020.md
+++ b/windows.media/systemmediatransportcontrolstimelineproperties_systemmediatransportcontrolstimelineproperties_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.SystemMediaTransportControlsTimelineProperties.#ctor
--api-type: winrt method
----
# Windows.Media.SystemMediaTransportControlsTimelineProperties.SystemMediaTransportControlsTimelineProperties
## -description
Initializes a new instance of the [SystemMediaTransportControlsTimelineProperties](systemmediatransportcontrolstimelineproperties.md) class.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.SystemMediaTransportControlsTimelineProperties.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.SystemMediaTransportControlsTimelineProperties.SystemMediaTransportControlsTimelineProperties
+
+## -description
+Initializes a new instance of the [SystemMediaTransportControlsTimelineProperties](systemmediatransportcontrolstimelineproperties.md) class.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videodisplayproperties.md b/windows.media/videodisplayproperties.md
index b7474d0f16..5f650458a1 100644
--- a/windows.media/videodisplayproperties.md
+++ b/windows.media/videodisplayproperties.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Media.VideoDisplayProperties
--api-type: winrt class
----
# Windows.Media.VideoDisplayProperties
## -description
Provides properties for video information that is displayed by [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md) class.
## -remarks
Starting with Windows 10, version 1607, UWP apps that use the [MediaPlayer](../windows.media.playback/mediaplayer.md) class or [AudioGraph](../windows.media.audio/audiograph.md) class to play media are automatically integrated with the System Media Transport Controls by default. When using automatic integration, you can get an instance of the **VideoDisplayProperties** class using the [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) class. Call [GetDisplayProperties](../windows.media.playback/mediaplaybackitem_getdisplayproperties.md) to get an instance of the [MediaItemDisplayProperties](../windows.media.playback/mediaitemdisplayproperties.md) class. Update the object with the values you want to be displayed for the item in the SMTC and then call [ApplyDisplayProperties](../windows.media.playback/mediaplaybackitem_applydisplayproperties.md) to commit the changes. For how-to guidance on using the SMTC from your app, see [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols).
When manually controlling the SMTC, get an instance of **VideoDisplayProperties** by using the [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md) class. For how-to guidance on manually controlling the SMTC, see [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls).
## -examples
## -see-also
[MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md), [MediaItemDisplayProperties](../windows.media.playback/mediaitemdisplayproperties.md), [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md), [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols), [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.VideoDisplayProperties
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.VideoDisplayProperties
+
+## -description
+Provides properties for video information that is displayed by [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md) class.
+
+## -remarks
+Starting with Windows 10, version 1607, UWP apps that use the [MediaPlayer](../windows.media.playback/mediaplayer.md) class or [AudioGraph](../windows.media.audio/audiograph.md) class to play media are automatically integrated with the System Media Transport Controls by default. When using automatic integration, you can get an instance of the **VideoDisplayProperties** class using the [MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md) class. Call [GetDisplayProperties](../windows.media.playback/mediaplaybackitem_getdisplayproperties.md) to get an instance of the [MediaItemDisplayProperties](../windows.media.playback/mediaitemdisplayproperties.md) class. Update the object with the values you want to be displayed for the item in the SMTC and then call [ApplyDisplayProperties](../windows.media.playback/mediaplaybackitem_applydisplayproperties.md) to commit the changes. For how-to guidance on using the SMTC from your app, see [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols).
+
+When manually controlling the SMTC, get an instance of **VideoDisplayProperties** by using the [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md) class. For how-to guidance on manually controlling the SMTC, see [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls).
+
+## -examples
+
+## -see-also
+[MediaPlaybackItem](../windows.media.playback/mediaplaybackitem.md), [MediaItemDisplayProperties](../windows.media.playback/mediaitemdisplayproperties.md), [SystemMediaTransportControlsDisplayUpdater](systemmediatransportcontrolsdisplayupdater.md), [Integrate with the SystemMediaTransportControls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols), [Manual control of the System Media Transport Controls](https://msdn.microsoft.com/en-us/windows/uwp/audio-video-camera/system-media-transport-controls)
\ No newline at end of file
diff --git a/windows.media/videodisplayproperties_genres.md b/windows.media/videodisplayproperties_genres.md
index ae1d6ee2c6..585bbc7cd8 100644
--- a/windows.media/videodisplayproperties_genres.md
+++ b/windows.media/videodisplayproperties_genres.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.VideoDisplayProperties.Genres
--api-type: winrt property
----
# Windows.Media.VideoDisplayProperties.Genres
## -description
Gets a modifiable list of strings representing genre names.
## -property-value
A modifiable list of strings representing genre names.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoDisplayProperties.Genres
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoDisplayProperties.Genres
+
+## -description
+Gets a modifiable list of strings representing genre names.
+
+## -property-value
+A modifiable list of strings representing genre names.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videodisplayproperties_subtitle.md b/windows.media/videodisplayproperties_subtitle.md
index aec153d971..2ce5c5d64f 100644
--- a/windows.media/videodisplayproperties_subtitle.md
+++ b/windows.media/videodisplayproperties_subtitle.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.VideoDisplayProperties.Subtitle
--api-type: winrt property
----
# Windows.Media.VideoDisplayProperties.Subtitle
## -description
Gets or sets the subtitle of the video.
## -property-value
The subtitle of the video.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoDisplayProperties.Subtitle
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoDisplayProperties.Subtitle
+
+## -description
+Gets or sets the subtitle of the video.
+
+## -property-value
+The subtitle of the video.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videodisplayproperties_title.md b/windows.media/videodisplayproperties_title.md
index e0ad091ee2..1469c0c69c 100644
--- a/windows.media/videodisplayproperties_title.md
+++ b/windows.media/videodisplayproperties_title.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.VideoDisplayProperties.Title
--api-type: winrt property
----
# Windows.Media.VideoDisplayProperties.Title
## -description
Gets or sets the title of the video.
## -property-value
The title of the video.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoDisplayProperties.Title
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoDisplayProperties.Title
+
+## -description
+Gets or sets the title of the video.
+
+## -property-value
+The title of the video.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoeffects_videostabilization.md b/windows.media/videoeffects_videostabilization.md
index 51b0f5a81a..53353e43ad 100644
--- a/windows.media/videoeffects_videostabilization.md
+++ b/windows.media/videoeffects_videostabilization.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.VideoEffects.VideoStabilization
--api-type: winrt property
----
# Windows.Media.VideoEffects.VideoStabilization
## -description
Represents a video stabilization effect which can be used on a video object to reduce the shakiness in the video.
## -property-value
The name of the effect: "Windows.Media.VideoStabilizationEffect"
## -remarks
While the **VideoStabilization** property is accessible on Windows Phone 8.1, the video stabilization effect itself is not supported on this platform. The effect is supported on Windows 10 Mobile and later.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoEffects.VideoStabilization
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoEffects.VideoStabilization
+
+## -description
+Represents a video stabilization effect which can be used on a video object to reduce the shakiness in the video.
+
+## -property-value
+The name of the effect: "Windows.Media.VideoStabilizationEffect"
+
+## -remarks
+While the **VideoStabilization** property is accessible on Windows Phone 8.1, the video stabilization effect itself is not supported on this platform. The effect is supported on Windows 10 Mobile and later.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe.md b/windows.media/videoframe.md
index a9c4fa4498..38f3e5c137 100644
--- a/windows.media/videoframe.md
+++ b/windows.media/videoframe.md
@@ -1,3 +1,20 @@
----
-api-id: T:Windows.Media.VideoFrame
--api-type: winrt class
----
# Windows.Media.VideoFrame
## -description
Represents a single frame of video data.
## -remarks
## -examples
## -see-also
[IMediaFrame](imediaframe.md), [IClosable](../windows.foundation/iclosable.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Media.VideoFrame
+-api-type: winrt class
+---
+
+
+
+# Windows.Media.VideoFrame
+
+## -description
+Represents a single frame of video data.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[IMediaFrame](imediaframe.md), [IClosable](../windows.foundation/iclosable.md)
\ No newline at end of file
diff --git a/windows.media/videoframe_close_811482585.md b/windows.media/videoframe_close_811482585.md
index 31bd89b2fb..add35a2d1c 100644
--- a/windows.media/videoframe_close_811482585.md
+++ b/windows.media/videoframe_close_811482585.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Media.VideoFrame.Close
--api-type: winrt method
----
# Windows.Media.VideoFrame.Close
## -description
Disposes of the object and associated resources.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.VideoFrame.Close
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.VideoFrame.Close
+
+## -description
+Disposes of the object and associated resources.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_copytoasync_1053453709.md b/windows.media/videoframe_copytoasync_1053453709.md
index 8a3891b440..128ea3872c 100644
--- a/windows.media/videoframe_copytoasync_1053453709.md
+++ b/windows.media/videoframe_copytoasync_1053453709.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Media.VideoFrame.CopyToAsync(Windows.Media.VideoFrame)
--api-type: winrt method
----
# Windows.Media.VideoFrame.CopyToAsync
## -description
Copies the current [VideoFrame](videoframe.md) into a provided [VideoFrame](videoframe.md) object.
## -parameters
### -param frame
The target video frame into which the current frame will be copied.
## -returns
An asynchronous action.
## -remarks
The target frame must have the same pixel format, width, height, and alpha mode as the source frame.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Media.VideoFrame.CopyToAsync(Windows.Media.VideoFrame)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.VideoFrame.CopyToAsync
+
+## -description
+Copies the current [VideoFrame](videoframe.md) into a provided [VideoFrame](videoframe.md) object.
+
+## -parameters
+### -param frame
+The target video frame into which the current frame will be copied.
+
+## -returns
+An asynchronous action.
+
+## -remarks
+The target frame must have the same pixel format, width, height, and alpha mode as the source frame.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_direct3dsurface.md b/windows.media/videoframe_direct3dsurface.md
index bf23f89a1c..f6e38fd4dc 100644
--- a/windows.media/videoframe_direct3dsurface.md
+++ b/windows.media/videoframe_direct3dsurface.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.VideoFrame.Direct3DSurface
--api-type: winrt property
----
# Windows.Media.VideoFrame.Direct3DSurface
## -description
Gets the [IDirect3DSurface](../windows.graphics.directx.direct3d11/idirect3dsurface.md) object containing the pixel data of the video frame, when one is present.
## -property-value
The [IDirect3DSurface](../windows.graphics.directx.direct3d11/idirect3dsurface.md) object containing the pixel data of the video frame.
## -remarks
The pixel data of a [VideoFrame](videoframe.md) can be stored either in a [IDirect3DSurface](../windows.graphics.directx.direct3d11/idirect3dsurface.md) or a [SoftwareBitmap](videoframe_softwarebitmap.md). This property will be null if the data for the frame is not stored in a [IDirect3DSurface](../windows.graphics.directx.direct3d11/idirect3dsurface.md). If the data is stored in a software bitmap, you can access it using the [SoftwareBitmap](videoframe_softwarebitmap.md) property of the [VideoFrame](videoframe.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoFrame.Direct3DSurface
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoFrame.Direct3DSurface
+
+## -description
+Gets the [IDirect3DSurface](../windows.graphics.directx.direct3d11/idirect3dsurface.md) object containing the pixel data of the video frame, when one is present.
+
+## -property-value
+The [IDirect3DSurface](../windows.graphics.directx.direct3d11/idirect3dsurface.md) object containing the pixel data of the video frame.
+
+## -remarks
+The pixel data of a [VideoFrame](videoframe.md) can be stored either in a [IDirect3DSurface](../windows.graphics.directx.direct3d11/idirect3dsurface.md) or a [SoftwareBitmap](videoframe_softwarebitmap.md). This property will be null if the data for the frame is not stored in a [IDirect3DSurface](../windows.graphics.directx.direct3d11/idirect3dsurface.md). If the data is stored in a software bitmap, you can access it using the [SoftwareBitmap](videoframe_softwarebitmap.md) property of the [VideoFrame](videoframe.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_duration.md b/windows.media/videoframe_duration.md
index fe98dc13b7..c5c2240b9b 100644
--- a/windows.media/videoframe_duration.md
+++ b/windows.media/videoframe_duration.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.VideoFrame.Duration
--api-type: winrt property
----
# Windows.Media.VideoFrame.Duration
## -description
Gets or sets the duration of the video frame.
## -property-value
The duration of the video frame.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoFrame.Duration
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoFrame.Duration
+
+## -description
+Gets or sets the duration of the video frame.
+
+## -property-value
+The duration of the video frame.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_extendedproperties.md b/windows.media/videoframe_extendedproperties.md
index c82ff97b9e..83719d2918 100644
--- a/windows.media/videoframe_extendedproperties.md
+++ b/windows.media/videoframe_extendedproperties.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.VideoFrame.ExtendedProperties
--api-type: winrt property
----
# Windows.Media.VideoFrame.ExtendedProperties
## -description
Gets the extended property set which enables getting and setting properties on the media frame.
## -property-value
The extended properties map.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoFrame.ExtendedProperties
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoFrame.ExtendedProperties
+
+## -description
+Gets the extended property set which enables getting and setting properties on the media frame.
+
+## -property-value
+The extended properties map.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_isdiscontinuous.md b/windows.media/videoframe_isdiscontinuous.md
index 3e4729f2c4..c04b0ab230 100644
--- a/windows.media/videoframe_isdiscontinuous.md
+++ b/windows.media/videoframe_isdiscontinuous.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.VideoFrame.IsDiscontinuous
--api-type: winrt property
----
# Windows.Media.VideoFrame.IsDiscontinuous
## -description
Gets or sets a value that indicates whether an video frame is the first frame after a gap in the stream.
## -property-value
True if the video frame is the first frame after a gap in the stream; otherwise, false.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoFrame.IsDiscontinuous
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoFrame.IsDiscontinuous
+
+## -description
+Gets or sets a value that indicates whether an video frame is the first frame after a gap in the stream.
+
+## -property-value
+True if the video frame is the first frame after a gap in the stream; otherwise, false.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_isreadonly.md b/windows.media/videoframe_isreadonly.md
index 8854eab681..3f01d37e9e 100644
--- a/windows.media/videoframe_isreadonly.md
+++ b/windows.media/videoframe_isreadonly.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.VideoFrame.IsReadOnly
--api-type: winrt property
----
# Windows.Media.VideoFrame.IsReadOnly
## -description
Gets a value indicating whether the video frame is read-only.
## -property-value
True if the video frame is read-only; otherwise, false.
## -remarks
When this value is true, both the video data and the mutable properties of the video frame are read-only.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoFrame.IsReadOnly
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoFrame.IsReadOnly
+
+## -description
+Gets a value indicating whether the video frame is read-only.
+
+## -property-value
+True if the video frame is read-only; otherwise, false.
+
+## -remarks
+When this value is true, both the video data and the mutable properties of the video frame are read-only.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_relativetime.md b/windows.media/videoframe_relativetime.md
index 4e18b3e28f..38f9c1356f 100644
--- a/windows.media/videoframe_relativetime.md
+++ b/windows.media/videoframe_relativetime.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.VideoFrame.RelativeTime
--api-type: winrt property
----
# Windows.Media.VideoFrame.RelativeTime
## -description
Gets or sets the relative time of the frame within the video stream.
## -property-value
The relative time of the frame within the video stream.
## -remarks
Use [SystemRelativeTime](imediaframe_systemrelativetime.md) to get a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoFrame.RelativeTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoFrame.RelativeTime
+
+## -description
+Gets or sets the relative time of the frame within the video stream.
+
+## -property-value
+The relative time of the frame within the video stream.
+
+## -remarks
+Use [SystemRelativeTime](imediaframe_systemrelativetime.md) to get a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_softwarebitmap.md b/windows.media/videoframe_softwarebitmap.md
index d662d0cd2b..3a4bfd4085 100644
--- a/windows.media/videoframe_softwarebitmap.md
+++ b/windows.media/videoframe_softwarebitmap.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.VideoFrame.SoftwareBitmap
--api-type: winrt property
----
# Windows.Media.VideoFrame.SoftwareBitmap
## -description
Gets the [SoftwareBitmap](videoframe_softwarebitmap.md) object containing the pixel data of the video frame, when one is present.
## -property-value
The [SoftwareBitmap](videoframe_softwarebitmap.md) object containing the pixel data of the video frame.
## -remarks
The pixel data of a [VideoFrame](videoframe.md) can be stored either in a [Direct3DSurface](videoframe_direct3dsurface.md) or a [SoftwareBitmap](videoframe_softwarebitmap.md). This property will be null if the data for the frame is not stored in a [SoftwareBitmap](videoframe_softwarebitmap.md). If the data is stored in a software bitmap, you can access it using the [Direct3DSurface](videoframe_direct3dsurface.md) property of the [VideoFrame](videoframe.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoFrame.SoftwareBitmap
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoFrame.SoftwareBitmap
+
+## -description
+Gets the [SoftwareBitmap](videoframe_softwarebitmap.md) object containing the pixel data of the video frame, when one is present.
+
+## -property-value
+The [SoftwareBitmap](videoframe_softwarebitmap.md) object containing the pixel data of the video frame.
+
+## -remarks
+The pixel data of a [VideoFrame](videoframe.md) can be stored either in a [Direct3DSurface](videoframe_direct3dsurface.md) or a [SoftwareBitmap](videoframe_softwarebitmap.md). This property will be null if the data for the frame is not stored in a [SoftwareBitmap](videoframe_softwarebitmap.md). If the data is stored in a software bitmap, you can access it using the [Direct3DSurface](videoframe_direct3dsurface.md) property of the [VideoFrame](videoframe.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_systemrelativetime.md b/windows.media/videoframe_systemrelativetime.md
index 2ad83b3e7e..31499c26bc 100644
--- a/windows.media/videoframe_systemrelativetime.md
+++ b/windows.media/videoframe_systemrelativetime.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Media.VideoFrame.SystemRelativeTime
--api-type: winrt property
----
# Windows.Media.VideoFrame.SystemRelativeTime
## -description
Gets or sets a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
## -property-value
A timestamp relative to the system.
## -remarks
Use [RelativeTime](audioframe_relativetime.md) to get a timestamp that is relative to the video stream.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoFrame.SystemRelativeTime
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoFrame.SystemRelativeTime
+
+## -description
+Gets or sets a timestamp that is relative to the system and is correlatable across multiple media sources on the same device.
+
+## -property-value
+A timestamp relative to the system.
+
+## -remarks
+Use [RelativeTime](audioframe_relativetime.md) to get a timestamp that is relative to the video stream.
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_type.md b/windows.media/videoframe_type.md
index 533e8c62ce..0477324d50 100644
--- a/windows.media/videoframe_type.md
+++ b/windows.media/videoframe_type.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Media.VideoFrame.Type
--api-type: winrt property
----
# Windows.Media.VideoFrame.Type
## -description
Gets a string indicating the type of video data the video frame contains.
## -property-value
A string indicating the type of audio data the video frame contains.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Media.VideoFrame.Type
+-api-type: winrt property
+---
+
+
+
+# Windows.Media.VideoFrame.Type
+
+## -description
+Gets a string indicating the type of video data the video frame contains.
+
+## -property-value
+A string indicating the type of audio data the video frame contains.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.media/videoframe_videoframe_1931895268.md b/windows.media/videoframe_videoframe_1931895268.md
index 647fa7a17c..d76f4bec6c 100644
--- a/windows.media/videoframe_videoframe_1931895268.md
+++ b/windows.media/videoframe_videoframe_1931895268.md
@@ -1,3 +1,33 @@
----
-api-id: M:Windows.Media.VideoFrame.#ctor(Windows.Graphics.Imaging.BitmapPixelFormat,System.Int32,System.Int32,Windows.Graphics.Imaging.BitmapAlphaMode)
--api-type: winrt method
----
# Windows.Media.VideoFrame.VideoFrame
## -description
Initializes a new instance of the [VideoFrame](videoframe.md) class.
## -parameters
### -param format
The pixel format of the video frame.
### -param width
The width of the video frame, in pixels.
### -param height
The height of the video frame, in pixels.
### -param alpha
The alpha mode of the video frame.
## -remarks
## -examples
## -see-also
[VideoFrame(BitmapPixelFormat, Int32, Int32)](videoframe_videoframe_221640236.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.VideoFrame.#ctor(Windows.Graphics.Imaging.BitmapPixelFormat,System.Int32,System.Int32,Windows.Graphics.Imaging.BitmapAlphaMode)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.VideoFrame.VideoFrame
+
+## -description
+Initializes a new instance of the [VideoFrame](videoframe.md) class.
+
+## -parameters
+### -param format
+The pixel format of the video frame.
+
+### -param width
+The width of the video frame, in pixels.
+
+### -param height
+The height of the video frame, in pixels.
+
+### -param alpha
+The alpha mode of the video frame.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[VideoFrame(BitmapPixelFormat, Int32, Int32)](videoframe_videoframe_221640236.md)
\ No newline at end of file
diff --git a/windows.media/videoframe_videoframe_221640236.md b/windows.media/videoframe_videoframe_221640236.md
index 827f5b3a84..b31d1eb1de 100644
--- a/windows.media/videoframe_videoframe_221640236.md
+++ b/windows.media/videoframe_videoframe_221640236.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Media.VideoFrame.#ctor(Windows.Graphics.Imaging.BitmapPixelFormat,System.Int32,System.Int32)
--api-type: winrt method
----
# Windows.Media.VideoFrame.VideoFrame
## -description
Initializes a new instance of the [VideoFrame](videoframe.md) class.
## -parameters
### -param format
The pixel format of the video frame.
### -param width
The width of the video frame, in pixels.
### -param height
The height of the video frame, in pixels.
## -remarks
## -examples
## -see-also
[VideoFrame(BitmapPixelFormat, Int32, Int32, BitmapAlphaMode)](videoframe_videoframe_1931895268.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Media.VideoFrame.#ctor(Windows.Graphics.Imaging.BitmapPixelFormat,System.Int32,System.Int32)
+-api-type: winrt method
+---
+
+
+
+# Windows.Media.VideoFrame.VideoFrame
+
+## -description
+Initializes a new instance of the [VideoFrame](videoframe.md) class.
+
+## -parameters
+### -param format
+The pixel format of the video frame.
+
+### -param width
+The width of the video frame, in pixels.
+
+### -param height
+The height of the video frame, in pixels.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[VideoFrame(BitmapPixelFormat, Int32, Int32, BitmapAlphaMode)](videoframe_videoframe_1931895268.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_backgrounddownloader_1221375020.md b/windows.networking.backgroundtransfer/backgrounddownloader_backgrounddownloader_1221375020.md
index f2d8aad2dd..de88b6de40 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_backgrounddownloader_1221375020.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_backgrounddownloader_1221375020.md
@@ -1,3 +1,20 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.#ctor
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.BackgroundDownloader
## -description
Creates a new [BackgroundDownloader](backgrounddownloader.md) object.
## -remarks
## -examples
## -see-also
[Background Transfer Download sample](http://go.microsoft.com/fwlink/p/?linkid=245064), [BackgroundDownloader(BackgroundTransferCompletionGroup) constructor](backgrounddownloader_backgrounddownloader_560098134.md), [How to download a file](http://msdn.microsoft.com/library/f7b1a3a0-87b8-4c85-a2a3-be9ff7f04d53)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.BackgroundDownloader
+
+## -description
+Creates a new [BackgroundDownloader](backgrounddownloader.md) object.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Background Transfer Download sample](http://go.microsoft.com/fwlink/p/?linkid=245064), [BackgroundDownloader(BackgroundTransferCompletionGroup) constructor](backgrounddownloader_backgrounddownloader_560098134.md), [How to download a file](http://msdn.microsoft.com/library/f7b1a3a0-87b8-4c85-a2a3-be9ff7f04d53)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_backgrounddownloader_560098134.md b/windows.networking.backgroundtransfer/backgrounddownloader_backgrounddownloader_560098134.md
index 4cff530016..2930ec4189 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_backgrounddownloader_560098134.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_backgrounddownloader_560098134.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.#ctor(Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.BackgroundDownloader
## -description
Creates a new [BackgroundDownloader](backgrounddownloader.md) object with a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
## -parameters
### -param completionGroup
The completion group to associate with this [BackgroundDownloader](backgrounddownloader.md) object.
This parameter cannot be **NULL**.
## -remarks
This constructor will associate all downloads created with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) passed in the *completionGroup* parameter. Once the [Enable](backgroundtransfercompletiongroup_enable.md) method is called on the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md), no more additional downloads can be created using this [BackgroundDownloader](backgrounddownloader.md) object.
## -examples
## -see-also
[BackgroundDownloader constructor](backgrounddownloader_backgrounddownloader_1221375020.md), [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.#ctor(Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.BackgroundDownloader
+
+## -description
+Creates a new [BackgroundDownloader](backgrounddownloader.md) object with a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
+
+## -parameters
+### -param completionGroup
+The completion group to associate with this [BackgroundDownloader](backgrounddownloader.md) object.
+
+This parameter cannot be **NULL**.
+
+## -remarks
+This constructor will associate all downloads created with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) passed in the *completionGroup* parameter. Once the [Enable](backgroundtransfercompletiongroup_enable.md) method is called on the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md), no more additional downloads can be created using this [BackgroundDownloader](backgrounddownloader.md) object.
+
+## -examples
+
+## -see-also
+[BackgroundDownloader constructor](backgrounddownloader_backgrounddownloader_1221375020.md), [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_completiongroup.md b/windows.networking.backgroundtransfer/backgrounddownloader_completiongroup.md
index 19f8d351d3..ee9b095054 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_completiongroup.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_completiongroup.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.CompletionGroup
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.CompletionGroup
## -description
Gets the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) associated with the [BackgroundDownloader](backgrounddownloader.md).
## -property-value
The [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) associated with the [BackgroundDownloader](backgrounddownloader.md) . This property can be null.
## -remarks
## -examples
## -see-also
[BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.CompletionGroup
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.CompletionGroup
+
+## -description
+Gets the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) associated with the [BackgroundDownloader](backgrounddownloader.md).
+
+## -property-value
+The [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) associated with the [BackgroundDownloader](backgrounddownloader.md) . This property can be null.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_costpolicy.md b/windows.networking.backgroundtransfer/backgrounddownloader_costpolicy.md
index 2138f70714..a0adf28c76 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_costpolicy.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_costpolicy.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.CostPolicy
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.CostPolicy
## -description
Gets or sets the cost policy for the background download operation.
## -property-value
Indicates whether transfers can occur on costed networks.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.CostPolicy
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.CostPolicy
+
+## -description
+Gets or sets the cost policy for the background download operation.
+
+## -property-value
+Indicates whether transfers can occur on costed networks.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_createdownload_1461958690.md b/windows.networking.backgroundtransfer/backgrounddownloader_createdownload_1461958690.md
index 7c76d80363..d90d09561a 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_createdownload_1461958690.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_createdownload_1461958690.md
@@ -1,3 +1,46 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownload(Windows.Foundation.Uri,Windows.Storage.IStorageFile,Windows.Storage.IStorageFile)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownload
## -description
Initializes a [DownloadOperation](downloadoperation.md) object with the resource [Uri](../windows.foundation/uri.md), the file that the response is written to, and the request entity body.
## -parameters
### -param uri
The location of the resource.
### -param resultFile
The file that the response will be written to.
### -param requestBodyFile
A file that represents the request entity body, which contains additional data the server requires before the download can begin. The file this object points to must be valid for the duration of the download.
## -returns
The resultant download operation.
## -remarks
The resultant [DownloadOperation](downloadoperation.md) supports scenarios where a valid download request contains specific data required by the server. For example, a website requires a filled out form before the download can take place.
Background transfer doesn't support concurrent downloads of the same [Uri](../windows.foundation/uri.md). So an app can download *http://example.com/myfile.wmv* once, or download it again after a previous download completed. An app shouldn't start two downloads of the same [Uri](../windows.foundation/uri.md) concurrently, since this may result in truncated files.
> [!IMPORTANT]
> Creating a large number of transfers on the main UI thread with **CreateDownload** can result in degraded performance of your app's UI. If you are queuing up a large number of transfers, it is recommended that you call **CreateDownload** on a background worker thread as in the following example.
```csharp
operation = await Task.Run(() => { return myDownloader.CreateDownload(uri, file); });
```
## -examples
## -see-also
[CreateDownload(Uri, IStorageFile)](backgrounddownloader_createdownload_186972694.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownload(Windows.Foundation.Uri,Windows.Storage.IStorageFile,Windows.Storage.IStorageFile)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownload
+
+## -description
+Initializes a [DownloadOperation](downloadoperation.md) object with the resource [Uri](../windows.foundation/uri.md), the file that the response is written to, and the request entity body.
+
+## -parameters
+### -param uri
+The location of the resource.
+
+### -param resultFile
+The file that the response will be written to.
+
+### -param requestBodyFile
+A file that represents the request entity body, which contains additional data the server requires before the download can begin. The file this object points to must be valid for the duration of the download.
+
+## -returns
+The resultant download operation.
+
+## -remarks
+The resultant [DownloadOperation](downloadoperation.md) supports scenarios where a valid download request contains specific data required by the server. For example, a website requires a filled out form before the download can take place.
+
+Background transfer doesn't support concurrent downloads of the same [Uri](../windows.foundation/uri.md). So an app can download *http://example.com/myfile.wmv* once, or download it again after a previous download completed. An app shouldn't start two downloads of the same [Uri](../windows.foundation/uri.md) concurrently, since this may result in truncated files.
+
+> [!IMPORTANT]
+> Creating a large number of transfers on the main UI thread with **CreateDownload** can result in degraded performance of your app's UI. If you are queuing up a large number of transfers, it is recommended that you call **CreateDownload** on a background worker thread as in the following example.
+
+```csharp
+operation = await Task.Run(() => { return myDownloader.CreateDownload(uri, file); });
+
+```
+
+
+
+## -examples
+
+## -see-also
+[CreateDownload(Uri, IStorageFile)](backgrounddownloader_createdownload_186972694.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_createdownload_186972694.md b/windows.networking.backgroundtransfer/backgrounddownloader_createdownload_186972694.md
index 6b1b0bd633..44b88c4710 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_createdownload_186972694.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_createdownload_186972694.md
@@ -1,3 +1,41 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownload(Windows.Foundation.Uri,Windows.Storage.IStorageFile)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownload
## -description
Initializes a [DownloadOperation](downloadoperation.md) object that contains the specified [Uri](../windows.foundation/uri.md) and the file that the response is written to.
## -parameters
### -param uri
The location of the resource.
### -param resultFile
The file that the response will be written to.
## -returns
The resultant download operation.
## -remarks
Background transfer doesn't support concurrent downloads of the same [Uri](../windows.foundation/uri.md). So an app can download *http://example.com/myfile.wmv* once, or download it again after a previous download completed. An app shouldn't start two downloads of the same [Uri](../windows.foundation/uri.md) concurrently, since this may result in truncated files.
> [!IMPORTANT]
> Creating a large number of transfers on the main UI thread with **CreateDownload** can result in degraded performance of your app's UI. If you are queuing up a large number of transfers, it is recommended that you call **CreateDownload** on a background worker thread as in the following example.
```csharp
operation = await Task.Run(() => { return myDownloader.CreateDownload(uri, file); });
```
## -examples
## -see-also
[CreateDownload(Uri, IStorageFile, IStorageFile)](backgrounddownloader_createdownload_1461958690.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownload(Windows.Foundation.Uri,Windows.Storage.IStorageFile)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownload
+
+## -description
+Initializes a [DownloadOperation](downloadoperation.md) object that contains the specified [Uri](../windows.foundation/uri.md) and the file that the response is written to.
+
+## -parameters
+### -param uri
+The location of the resource.
+
+### -param resultFile
+The file that the response will be written to.
+
+## -returns
+The resultant download operation.
+
+## -remarks
+Background transfer doesn't support concurrent downloads of the same [Uri](../windows.foundation/uri.md). So an app can download *http://example.com/myfile.wmv* once, or download it again after a previous download completed. An app shouldn't start two downloads of the same [Uri](../windows.foundation/uri.md) concurrently, since this may result in truncated files.
+
+> [!IMPORTANT]
+> Creating a large number of transfers on the main UI thread with **CreateDownload** can result in degraded performance of your app's UI. If you are queuing up a large number of transfers, it is recommended that you call **CreateDownload** on a background worker thread as in the following example.
+
+```csharp
+operation = await Task.Run(() => { return myDownloader.CreateDownload(uri, file); });
+
+```
+
+
+
+## -examples
+
+## -see-also
+[CreateDownload(Uri, IStorageFile, IStorageFile)](backgrounddownloader_createdownload_1461958690.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_createdownloadasync_282410561.md b/windows.networking.backgroundtransfer/backgrounddownloader_createdownloadasync_282410561.md
index b83babd02b..f711168ceb 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_createdownloadasync_282410561.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_createdownloadasync_282410561.md
@@ -1,3 +1,34 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownloadAsync(Windows.Foundation.Uri,Windows.Storage.IStorageFile,Windows.Storage.Streams.IInputStream)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownloadAsync
## -description
Creates an asynchronous download operation that includes a URI, the file that the response will be written to, and the [IInputStream](../windows.storage.streams/iinputstream.md) object from which the file contents are read.
## -parameters
### -param uri
The location of the resource.
### -param resultFile
Represents the file that the response will be written to.
### -param requestBodyStream
A stream that represents the request entity body.
## -returns
The resultant asynchronous download operation.
## -remarks
Background transfer doesn't support concurrent downloads of the same [Uri](../windows.foundation/uri.md). So an app can download *http://example.com/myfile.wmv* once, or download it again after a previous download completed. An app shouldn't start two downloads of the same [Uri](../windows.foundation/uri.md) concurrently, since this may result in truncated files.
## -examples
## -see-also
[IStorageFile](../windows.storage/istoragefile.md), [IInputStream](../windows.storage.streams/iinputstream.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownloadAsync(Windows.Foundation.Uri,Windows.Storage.IStorageFile,Windows.Storage.Streams.IInputStream)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.CreateDownloadAsync
+
+## -description
+Creates an asynchronous download operation that includes a URI, the file that the response will be written to, and the [IInputStream](../windows.storage.streams/iinputstream.md) object from which the file contents are read.
+
+## -parameters
+### -param uri
+The location of the resource.
+
+### -param resultFile
+Represents the file that the response will be written to.
+
+### -param requestBodyStream
+A stream that represents the request entity body.
+
+## -returns
+The resultant asynchronous download operation.
+
+## -remarks
+Background transfer doesn't support concurrent downloads of the same [Uri](../windows.foundation/uri.md). So an app can download *http://example.com/myfile.wmv* once, or download it again after a previous download completed. An app shouldn't start two downloads of the same [Uri](../windows.foundation/uri.md) concurrently, since this may result in truncated files.
+
+## -examples
+
+## -see-also
+[IStorageFile](../windows.storage/istoragefile.md), [IInputStream](../windows.storage.streams/iinputstream.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_failuretilenotification.md b/windows.networking.backgroundtransfer/backgrounddownloader_failuretilenotification.md
index 82e69e9808..9b373a70f5 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_failuretilenotification.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_failuretilenotification.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.FailureTileNotification
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.FailureTileNotification
## -description
Gets or sets the [TileNotification](../windows.ui.notifications/tilenotification.md) used to define the visuals, identification tag, and expiration time of a tile notification used to update the app tile when indicating failure of a download to the user.
## -property-value
The [TileNotification](../windows.ui.notifications/tilenotification.md) used to indicate download failure.
## -remarks
## -examples
## -see-also
[TileNotification](../windows.ui.notifications/tilenotification.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.FailureTileNotification
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.FailureTileNotification
+
+## -description
+Gets or sets the [TileNotification](../windows.ui.notifications/tilenotification.md) used to define the visuals, identification tag, and expiration time of a tile notification used to update the app tile when indicating failure of a download to the user.
+
+## -property-value
+The [TileNotification](../windows.ui.notifications/tilenotification.md) used to indicate download failure.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[TileNotification](../windows.ui.notifications/tilenotification.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_failuretoastnotification.md b/windows.networking.backgroundtransfer/backgrounddownloader_failuretoastnotification.md
index 65007be0db..b53acc6663 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_failuretoastnotification.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_failuretoastnotification.md
@@ -1,3 +1,31 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.FailureToastNotification
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.FailureToastNotification
## -description
Gets or sets the [ToastNotification](../windows.ui.notifications/toastnotification.md) that defines the content, associated metadata, and events used in a toast notification to indicate failure of a download to the user.
## -property-value
The [ToastNotification](../windows.ui.notifications/toastnotification.md) used to indicate download failure.
## -remarks
An app that uses [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) to communicate through a toast notification must declare that it is **Toast capable** in the app manifest file. The **Toast capable** setting is located under the **Notifications** section of **Application** tab. Set the **Toast capable** option to "Yes" so the app can receive toast notifications.
If **Toast capable** is not enabled in the app manifest, then any toast settings in the [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) namespace will be silently ignored and no toasts notifications will be received by the app.
> [!NOTE]
> A user can manually disable or enable toast notifications for your app at any time.
For more information on toast notifications, see [Sending toast notifications](http://msdn.microsoft.com/library/9ec1d052-cff8-415c-aba0-90b088c64039) and [How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011).
## -examples
## -see-also
[How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011), [ToastNotification](../windows.ui.notifications/toastnotification.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.FailureToastNotification
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.FailureToastNotification
+
+## -description
+Gets or sets the [ToastNotification](../windows.ui.notifications/toastnotification.md) that defines the content, associated metadata, and events used in a toast notification to indicate failure of a download to the user.
+
+## -property-value
+The [ToastNotification](../windows.ui.notifications/toastnotification.md) used to indicate download failure.
+
+## -remarks
+An app that uses [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) to communicate through a toast notification must declare that it is **Toast capable** in the app manifest file. The **Toast capable** setting is located under the **Notifications** section of **Application** tab. Set the **Toast capable** option to "Yes" so the app can receive toast notifications.
+
+If **Toast capable** is not enabled in the app manifest, then any toast settings in the [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) namespace will be silently ignored and no toasts notifications will be received by the app.
+
+> [!NOTE]
+> A user can manually disable or enable toast notifications for your app at any time.
+
+For more information on toast notifications, see [Sending toast notifications](http://msdn.microsoft.com/library/9ec1d052-cff8-415c-aba0-90b088c64039) and [How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011).
+
+## -examples
+
+## -see-also
+[How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011), [ToastNotification](../windows.ui.notifications/toastnotification.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsasync_1101292265.md b/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsasync_1101292265.md
index a428018303..5dd15ee1d5 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsasync_1101292265.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsasync_1101292265.md
@@ -1,3 +1,24 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsAsync
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsAsync
## -description
Returns a collection of pending downloads that are not associated with a BackgroundTransferGroup.
## -returns
A collection of pending downloads for the current application instance.
## -remarks
On Windows Phone, this method will return the error code HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG) if the Internet capability is not declared in your app manifest. On Windows, this method will return the error code HRESULT: 0x80070005 (E_ACCESSDENIED) if the Internet capability is not declared in your app manifest. This capability is enabled by default in all Store app project templates.
## -examples
## -see-also
[GetCurrentDownloadsAsync(String)](backgrounddownloader_getcurrentdownloadsasync_405117897.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsAsync
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsAsync
+
+## -description
+Returns a collection of pending downloads that are not associated with a BackgroundTransferGroup.
+
+## -returns
+A collection of pending downloads for the current application instance.
+
+## -remarks
+On Windows Phone, this method will return the error code HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG) if the Internet capability is not declared in your app manifest. On Windows, this method will return the error code HRESULT: 0x80070005 (E_ACCESSDENIED) if the Internet capability is not declared in your app manifest. This capability is enabled by default in all Store app project templates.
+
+## -examples
+
+## -see-also
+[GetCurrentDownloadsAsync(String)](backgrounddownloader_getcurrentdownloadsasync_405117897.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsasync_405117897.md b/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsasync_405117897.md
index 34d52df9b1..debbf51e03 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsasync_405117897.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsasync_405117897.md
@@ -1,3 +1,31 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsAsync(System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsAsync
## -description
> [!NOTE]
> [GetCurrentDownloadsAsync(group)](backgrounddownloader_getcurrentdownloadsasync_405117897.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [GetCurrentDownloadsForTransferGroupAsync](backgrounddownloader_getcurrentdownloadsfortransfergroupasync.md).
Returns a collection of pending downloads for a specific [Group](backgrounddownloader_group.md).
## -parameters
### -param group
A string indicating a specific group of transfers.
## -returns
A collection of pending downloads for the specific group.
## -remarks
On Windows Phone, this method will return the error code HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG) if the Internet capability is not declared in your app manifest. On Windows, this method will return the error code HRESULT: 0x80070005 (E_ACCESSDENIED) if the Internet capability is not declared in your app manifest. This capability is enabled by default in all Store app project templates.
## -examples
## -see-also
[GetCurrentDownloadsAsync](backgrounddownloader_getcurrentdownloadsasync_1101292265.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsAsync(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsAsync
+
+## -description
+> [!NOTE]
+> [GetCurrentDownloadsAsync(group)](backgrounddownloader_getcurrentdownloadsasync_405117897.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [GetCurrentDownloadsForTransferGroupAsync](backgrounddownloader_getcurrentdownloadsfortransfergroupasync.md).
+
+Returns a collection of pending downloads for a specific [Group](backgrounddownloader_group.md).
+
+## -parameters
+### -param group
+A string indicating a specific group of transfers.
+
+## -returns
+A collection of pending downloads for the specific group.
+
+## -remarks
+On Windows Phone, this method will return the error code HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG) if the Internet capability is not declared in your app manifest. On Windows, this method will return the error code HRESULT: 0x80070005 (E_ACCESSDENIED) if the Internet capability is not declared in your app manifest. This capability is enabled by default in all Store app project templates.
+
+## -examples
+
+## -see-also
+[GetCurrentDownloadsAsync](backgrounddownloader_getcurrentdownloadsasync_1101292265.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsfortransfergroupasync_1466993145.md b/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsfortransfergroupasync_1466993145.md
index 74b28aaaf8..b199990766 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsfortransfergroupasync_1466993145.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_getcurrentdownloadsfortransfergroupasync_1466993145.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsForTransferGroupAsync(Windows.Networking.BackgroundTransfer.BackgroundTransferGroup)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsForTransferGroupAsync
## -description
Gets all downloads associated with the provided [BackgroundTransferGroup](backgroundtransfergroup.md).
## -parameters
### -param group
Contains information used to identify a group of downloads.
## -returns
A list of downloads currently associated with the specified group.
## -remarks
## -examples
## -see-also
[BackgroundTransferGroup](backgroundtransfergroup.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsForTransferGroupAsync(Windows.Networking.BackgroundTransfer.BackgroundTransferGroup)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.GetCurrentDownloadsForTransferGroupAsync
+
+## -description
+Gets all downloads associated with the provided [BackgroundTransferGroup](backgroundtransfergroup.md).
+
+## -parameters
+### -param group
+Contains information used to identify a group of downloads.
+
+## -returns
+A list of downloads currently associated with the specified group.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[BackgroundTransferGroup](backgroundtransfergroup.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_group.md b/windows.networking.backgroundtransfer/backgrounddownloader_group.md
index cf97d76236..003cdae07a 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_group.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_group.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.Group
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.Group
## -description
> [!NOTE]
> [Group](backgrounddownloader_group.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [TransferGroup](backgrounddownloader_transfergroup.md).
Gets or sets a string value (e.g. a GUID) indicating the group the transfer will belong to. A download operation with a group ID will only appear in operation enumerations using [GetCurrentDownloadsAsync(String)](backgrounddownloader_getcurrentdownloadsasync_405117897.md) with the specific group string value.
## -property-value
The group name.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.Group
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.Group
+
+## -description
+> [!NOTE]
+> [Group](backgrounddownloader_group.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [TransferGroup](backgrounddownloader_transfergroup.md).
+
+Gets or sets a string value (e.g. a GUID) indicating the group the transfer will belong to. A download operation with a group ID will only appear in operation enumerations using [GetCurrentDownloadsAsync(String)](backgrounddownloader_getcurrentdownloadsasync_405117897.md) with the specific group string value.
+
+## -property-value
+The group name.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_method.md b/windows.networking.backgroundtransfer/backgrounddownloader_method.md
index 916d8ac8ca..a642182e6f 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_method.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_method.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.Method
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.Method
## -description
Gets or sets the HTTP method used for the background download. The default method used for download operations is GET.
## -property-value
The method to use for the background download. Setting this property will override the default method used for the operation.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.Method
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.Method
+
+## -description
+Gets or sets the HTTP method used for the background download. The default method used for download operations is GET.
+
+## -property-value
+The method to use for the background download. Setting this property will override the default method used for the operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_proxycredential.md b/windows.networking.backgroundtransfer/backgrounddownloader_proxycredential.md
index 42fd5d67ca..7b659cbfa1 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_proxycredential.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_proxycredential.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.ProxyCredential
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.ProxyCredential
## -description
Gets or sets the proxy credentials for the background transfer.
## -property-value
The credentials used to authenticate with an HTTP proxy.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.ProxyCredential
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.ProxyCredential
+
+## -description
+Gets or sets the proxy credentials for the background transfer.
+
+## -property-value
+The credentials used to authenticate with an HTTP proxy.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_requestunconstraineddownloadsasync_956334295.md b/windows.networking.backgroundtransfer/backgrounddownloader_requestunconstraineddownloadsasync_956334295.md
index c80a1ad4fa..8bcc79eb69 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_requestunconstraineddownloadsasync_956334295.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_requestunconstraineddownloadsasync_956334295.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.RequestUnconstrainedDownloadsAsync(Windows.Foundation.Collections.IIterable{Windows.Networking.BackgroundTransfer.DownloadOperation})
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.RequestUnconstrainedDownloadsAsync
## -description
Used to request an unconstrained download operation. When this method is called the user is provided with a UI prompt that they can use to indicate their consent for an unconstrained operation.An unconstrained transfer operation will run without the resource restrictions normally associated with background network operations while a device is running on battery.
## -parameters
### -param operations
The download operation to run unconstrained.
## -returns
Indicates if the operations will run unconstrained.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.RequestUnconstrainedDownloadsAsync(Windows.Foundation.Collections.IIterable{Windows.Networking.BackgroundTransfer.DownloadOperation})
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.RequestUnconstrainedDownloadsAsync
+
+## -description
+Used to request an unconstrained download operation. When this method is called the user is provided with a UI prompt that they can use to indicate their consent for an unconstrained operation.An unconstrained transfer operation will run without the resource restrictions normally associated with background network operations while a device is running on battery.
+
+## -parameters
+### -param operations
+The download operation to run unconstrained.
+
+## -returns
+Indicates if the operations will run unconstrained.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_servercredential.md b/windows.networking.backgroundtransfer/backgrounddownloader_servercredential.md
index 110919cff8..718d2097a7 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_servercredential.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_servercredential.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.ServerCredential
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.ServerCredential
## -description
Gets or sets the credentials to use to authenticate with the origin server.
> [!NOTE]
> For downloads via FTP, authentication credentials must be provided within the specified URI. For example, **ftp://user:password@server/file.txt**.
## -property-value
The credential to use for authentication.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.ServerCredential
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.ServerCredential
+
+## -description
+Gets or sets the credentials to use to authenticate with the origin server.
+
+> [!NOTE]
+> For downloads via FTP, authentication credentials must be provided within the specified URI. For example, **ftp://user:password@server/file.txt**.
+
+## -property-value
+The credential to use for authentication.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_setrequestheader_1828905877.md b/windows.networking.backgroundtransfer/backgrounddownloader_setrequestheader_1828905877.md
index 85feaec555..dadbb9d320 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_setrequestheader_1828905877.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_setrequestheader_1828905877.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.SetRequestHeader(System.String,System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.SetRequestHeader
## -description
Used to set an HTTP request header.
## -parameters
### -param headerName
The header name.
### -param headerValue
The header value.
## -remarks
This method allows the caller to set request headers. This method can be called multiple times for the same header. The values will then be concatenated.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundDownloader.SetRequestHeader(System.String,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.SetRequestHeader
+
+## -description
+Used to set an HTTP request header.
+
+## -parameters
+### -param headerName
+The header name.
+
+### -param headerValue
+The header value.
+
+## -remarks
+This method allows the caller to set request headers. This method can be called multiple times for the same header. The values will then be concatenated.
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_successtilenotification.md b/windows.networking.backgroundtransfer/backgrounddownloader_successtilenotification.md
index 1975445453..e4d9631599 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_successtilenotification.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_successtilenotification.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.SuccessTileNotification
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.SuccessTileNotification
## -description
Gets or sets the [TileNotification](../windows.ui.notifications/tilenotification.md) used to define the visuals, identification tag, and expiration time of a tile notification used to update the app tile when indicating success of a download to the user.
## -property-value
The [TileNotification](../windows.ui.notifications/tilenotification.md) used to indicate download success.
## -remarks
## -examples
## -see-also
[TileNotification](../windows.ui.notifications/tilenotification.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.SuccessTileNotification
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.SuccessTileNotification
+
+## -description
+Gets or sets the [TileNotification](../windows.ui.notifications/tilenotification.md) used to define the visuals, identification tag, and expiration time of a tile notification used to update the app tile when indicating success of a download to the user.
+
+## -property-value
+The [TileNotification](../windows.ui.notifications/tilenotification.md) used to indicate download success.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[TileNotification](../windows.ui.notifications/tilenotification.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_successtoastnotification.md b/windows.networking.backgroundtransfer/backgrounddownloader_successtoastnotification.md
index 3445dbff05..20a4bbb3ce 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_successtoastnotification.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_successtoastnotification.md
@@ -1,3 +1,31 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.SuccessToastNotification
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.SuccessToastNotification
## -description
Gets or sets the [ToastNotification](../windows.ui.notifications/toastnotification.md) that defines the content, associated metadata, and events used in a toast notification to indicate success of a download to the user.
## -property-value
The [ToastNotification](../windows.ui.notifications/toastnotification.md) used to indicate download success.
## -remarks
An app that uses [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) to communicate through a toast notification must declare that it is **Toast capable** in the app manifest file. The **Toast capable** setting is located under the **Notifications** section of **Application** tab. Set the **Toast capable** option to "Yes" so the app can receive toast notifications.
If **Toast capable** is not enabled in the app manifest, then any toast settings in the [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) namespace will be silently ignored and no toasts notifications will be received by the app.
> [!NOTE]
> A user can manually disable or enable toast notifications for your app at any time.
For more information on toast notifications, see [Sending toast notifications](http://msdn.microsoft.com/library/9ec1d052-cff8-415c-aba0-90b088c64039) and [How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011).
## -examples
## -see-also
[How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011), [ToastNotification](../windows.ui.notifications/toastnotification.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.SuccessToastNotification
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.SuccessToastNotification
+
+## -description
+Gets or sets the [ToastNotification](../windows.ui.notifications/toastnotification.md) that defines the content, associated metadata, and events used in a toast notification to indicate success of a download to the user.
+
+## -property-value
+The [ToastNotification](../windows.ui.notifications/toastnotification.md) used to indicate download success.
+
+## -remarks
+An app that uses [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) to communicate through a toast notification must declare that it is **Toast capable** in the app manifest file. The **Toast capable** setting is located under the **Notifications** section of **Application** tab. Set the **Toast capable** option to "Yes" so the app can receive toast notifications.
+
+If **Toast capable** is not enabled in the app manifest, then any toast settings in the [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) namespace will be silently ignored and no toasts notifications will be received by the app.
+
+> [!NOTE]
+> A user can manually disable or enable toast notifications for your app at any time.
+
+For more information on toast notifications, see [Sending toast notifications](http://msdn.microsoft.com/library/9ec1d052-cff8-415c-aba0-90b088c64039) and [How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011).
+
+## -examples
+
+## -see-also
+[How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011), [ToastNotification](../windows.ui.notifications/toastnotification.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounddownloader_transfergroup.md b/windows.networking.backgroundtransfer/backgrounddownloader_transfergroup.md
index 36478946f2..9f6d77e14a 100644
--- a/windows.networking.backgroundtransfer/backgrounddownloader_transfergroup.md
+++ b/windows.networking.backgroundtransfer/backgrounddownloader_transfergroup.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.TransferGroup
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundDownloader.TransferGroup
## -description
Gets or sets the group that a download operation will belong to.
## -property-value
The group to associate with the download.
## -remarks
## -examples
## -see-also
[BackgroundTransferGroup](backgroundtransfergroup.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundDownloader.TransferGroup
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundDownloader.TransferGroup
+
+## -description
+Gets or sets the group that a download operation will belong to.
+
+## -property-value
+The group to associate with the download.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[BackgroundTransferGroup](backgroundtransfergroup.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup.md b/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup.md
index 00483297db..129091ee3c 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup.md
@@ -1,3 +1,23 @@
----
-api-id: T:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup
--api-type: winrt class
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup
## -description
Represents a set of background transfer operations ([DownloadOperation](downloadoperation.md) or [UploadOperation](uploadoperation.md) objects) that trigger a background task once all the operations are done (if the operations completed successfully) or fail with an error.
## -remarks
The [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) class allows an app to register to receive immediate notification after background transfer operations are complete even if the app is not in the foreground. The app registers a background task to receive notification that occurs if the background transfers completed successfully or if an error occurred. This allows the app to be immediately notified at the time of completion, instead of requiring that the app wait until the next time the app is restarted or moved to the foreground to query for completions.
The app must implement the [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md) to run that receives the completion notifications. The [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md) must be registered using the [BackgroundTaskBuilder](../windows.applicationmodel.background/backgroundtaskbuilder.md) class. The background task must be declared in the app manifest. The app does not require lock screen access to use a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
## -examples
## -see-also
[BackgroundTaskBuilder](../windows.applicationmodel.background/backgroundtaskbuilder.md), [DownloadOperation](downloadoperation.md), [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md), [UploadOperation](uploadoperation.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup
+-api-type: winrt class
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup
+
+## -description
+Represents a set of background transfer operations ([DownloadOperation](downloadoperation.md) or [UploadOperation](uploadoperation.md) objects) that trigger a background task once all the operations are done (if the operations completed successfully) or fail with an error.
+
+## -remarks
+The [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) class allows an app to register to receive immediate notification after background transfer operations are complete even if the app is not in the foreground. The app registers a background task to receive notification that occurs if the background transfers completed successfully or if an error occurred. This allows the app to be immediately notified at the time of completion, instead of requiring that the app wait until the next time the app is restarted or moved to the foreground to query for completions.
+
+The app must implement the [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md) to run that receives the completion notifications. The [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md) must be registered using the [BackgroundTaskBuilder](../windows.applicationmodel.background/backgroundtaskbuilder.md) class. The background task must be declared in the app manifest. The app does not require lock screen access to use a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
+
+## -examples
+
+## -see-also
+[BackgroundTaskBuilder](../windows.applicationmodel.background/backgroundtaskbuilder.md), [DownloadOperation](downloadoperation.md), [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md), [UploadOperation](uploadoperation.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_backgroundtransfercompletiongroup_1221375020.md b/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_backgroundtransfercompletiongroup_1221375020.md
index a6334a7b2e..ec490aa78e 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_backgroundtransfercompletiongroup_1221375020.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_backgroundtransfercompletiongroup_1221375020.md
@@ -1,3 +1,19 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.#ctor
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.BackgroundTransferCompletionGroup
## -description
Creates a new [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) object.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.BackgroundTransferCompletionGroup
+
+## -description
+Creates a new [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) object.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_enable_366433390.md b/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_enable_366433390.md
index f5320b5725..827b896b6b 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_enable_366433390.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_enable_366433390.md
@@ -1,3 +1,25 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.Enable
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.Enable
## -description
Indicates that the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) is complete and no more background transfer operations ([DownloadOperation](downloadoperation.md) or [UploadOperation](uploadoperation.md) objects) will be added t the completion group.
## -remarks
The [Enable](backgroundtransfercompletiongroup_enable.md) method must be called on the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) to enable the completion group, otherwise the background task associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) will never be called.
Any attempt to add a [DownloadOperation](downloadoperation.md) or [UploadOperation](uploadoperation.md) to the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) after calling the [Enable](backgroundtransfercompletiongroup_enable.md) method will result in an exception.
The [Enable](backgroundtransfercompletiongroup_enable.md) method on a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) can only be called once. An attempt to call the [Enable](backgroundtransfercompletiongroup_enable.md) method more than once will result in an exception.
## -examples
## -see-also
[DownloadOperation](downloadoperation.md), [UploadOperation](uploadoperation.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.Enable
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.Enable
+
+## -description
+Indicates that the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) is complete and no more background transfer operations ([DownloadOperation](downloadoperation.md) or [UploadOperation](uploadoperation.md) objects) will be added t the completion group.
+
+## -remarks
+The [Enable](backgroundtransfercompletiongroup_enable.md) method must be called on the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) to enable the completion group, otherwise the background task associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) will never be called.
+
+Any attempt to add a [DownloadOperation](downloadoperation.md) or [UploadOperation](uploadoperation.md) to the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) after calling the [Enable](backgroundtransfercompletiongroup_enable.md) method will result in an exception.
+
+The [Enable](backgroundtransfercompletiongroup_enable.md) method on a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) can only be called once. An attempt to call the [Enable](backgroundtransfercompletiongroup_enable.md) method more than once will result in an exception.
+
+## -examples
+
+## -see-also
+[DownloadOperation](downloadoperation.md), [UploadOperation](uploadoperation.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_isenabled.md b/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_isenabled.md
index 0fe6380aea..df5bed677c 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_isenabled.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_isenabled.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.IsEnabled
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.IsEnabled
## -description
Gets a value that indicates if [Enable](backgroundtransfercompletiongroup_enable.md) method on a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) has already been called.
## -property-value
A value that indicates if the [Enable](backgroundtransfercompletiongroup_enable.md) method on the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) has already been called.
## -remarks
## -examples
## -see-also
[Enable](backgroundtransfercompletiongroup_enable.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.IsEnabled
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.IsEnabled
+
+## -description
+Gets a value that indicates if [Enable](backgroundtransfercompletiongroup_enable.md) method on a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) has already been called.
+
+## -property-value
+A value that indicates if the [Enable](backgroundtransfercompletiongroup_enable.md) method on the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) has already been called.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[Enable](backgroundtransfercompletiongroup_enable.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_trigger.md b/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_trigger.md
index 81ea3894d9..d28d672f08 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_trigger.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercompletiongroup_trigger.md
@@ -1,3 +1,28 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.Trigger
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.Trigger
## -description
Gets the [IBackgroundTrigger](../windows.applicationmodel.background/ibackgroundtrigger.md) used to set up the background task associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
## -property-value
The trigger used to set up the background task associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
## -remarks
An [IBackgroundTrigger](../windows.applicationmodel.background/ibackgroundtrigger.md) must be used to set up the [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md) associated with a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
An [IBackgroundTrigger](../windows.applicationmodel.background/ibackgroundtrigger.md) can be associated only with one [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md).
This property never is **NULL**.
## -examples
## -see-also
[IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md), [IBackgroundTrigger](../windows.applicationmodel.background/ibackgroundtrigger.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.Trigger
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup.Trigger
+
+## -description
+Gets the [IBackgroundTrigger](../windows.applicationmodel.background/ibackgroundtrigger.md) used to set up the background task associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
+
+## -property-value
+The trigger used to set up the background task associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
+
+## -remarks
+An [IBackgroundTrigger](../windows.applicationmodel.background/ibackgroundtrigger.md) must be used to set up the [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md) associated with a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
+
+An [IBackgroundTrigger](../windows.applicationmodel.background/ibackgroundtrigger.md) can be associated only with one [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md).
+
+This property never is **NULL**.
+
+## -examples
+
+## -see-also
+[IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md), [IBackgroundTrigger](../windows.applicationmodel.background/ibackgroundtrigger.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails.md b/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails.md
index 40b931f840..9b3f3e4049 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails.md
@@ -1,3 +1,25 @@
----
-api-id: T:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails
--api-type: winrt class
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails
## -description
Contains information about a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) that can be only accessed from the [Run](../windows.applicationmodel.background/ibackgroundtask_run.md) method on the [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md).
## -remarks
The [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) class allows an app to register to receive immediate notification after background transfer operations are complete even if the app is not in the foreground. The app registers a background task to receive notification that occurs if the background transfers completed successfully or if an error occurred. This allows the app to be immediately notified at the time of completion, instead of requiring that the app wait until the next time the app is restarted or moved to the foreground to query for completions.
The app must implement the [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md) to run that receives the completion notifications. The [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md) must be registered using the [BackgroundTaskBuilder](../windows.applicationmodel.background/backgroundtaskbuilder.md) class. The background task must be declared in the app manifest. The app does not require lock screen access to use a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
A [BackgroundTransferCompletionGroupTriggerDetails](backgroundtransfercompletiongrouptriggerdetails.md) instance is created when the background task for a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) has received a notification after background transfer operations are complete.
## -examples
## -see-also
[IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md), [IBackgroundTask.Run](../windows.applicationmodel.background/ibackgroundtask_run.md), [BackgroundTaskBuilder](../windows.applicationmodel.background/backgroundtaskbuilder.md), [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md)
\ No newline at end of file
+---
+-api-id: T:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails
+-api-type: winrt class
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails
+
+## -description
+Contains information about a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) that can be only accessed from the [Run](../windows.applicationmodel.background/ibackgroundtask_run.md) method on the [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md).
+
+## -remarks
+The [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) class allows an app to register to receive immediate notification after background transfer operations are complete even if the app is not in the foreground. The app registers a background task to receive notification that occurs if the background transfers completed successfully or if an error occurred. This allows the app to be immediately notified at the time of completion, instead of requiring that the app wait until the next time the app is restarted or moved to the foreground to query for completions.
+
+The app must implement the [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md) to run that receives the completion notifications. The [IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md) must be registered using the [BackgroundTaskBuilder](../windows.applicationmodel.background/backgroundtaskbuilder.md) class. The background task must be declared in the app manifest. The app does not require lock screen access to use a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
+
+A [BackgroundTransferCompletionGroupTriggerDetails](backgroundtransfercompletiongrouptriggerdetails.md) instance is created when the background task for a [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) has received a notification after background transfer operations are complete.
+
+## -examples
+
+## -see-also
+[IBackgroundTask](../windows.applicationmodel.background/ibackgroundtask.md), [IBackgroundTask.Run](../windows.applicationmodel.background/ibackgroundtask_run.md), [BackgroundTaskBuilder](../windows.applicationmodel.background/backgroundtaskbuilder.md), [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails_downloads.md b/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails_downloads.md
index f19a36050a..fa2e3d90dd 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails_downloads.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails_downloads.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails.Downloads
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails.Downloads
## -description
Gets the list of [DownloadOperation](downloadoperation.md) objects associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
## -property-value
The list of [DownloadOperation](downloadoperation.md) objects associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md)
## -remarks
## -examples
## -see-also
[BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md), [DownloadOperation](downloadoperation.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails.Downloads
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails.Downloads
+
+## -description
+Gets the list of [DownloadOperation](downloadoperation.md) objects associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
+
+## -property-value
+The list of [DownloadOperation](downloadoperation.md) objects associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md)
+
+## -remarks
+
+## -examples
+
+## -see-also
+[BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md), [DownloadOperation](downloadoperation.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails_uploads.md b/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails_uploads.md
index ebe1cf72d1..fe85a4125a 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails_uploads.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercompletiongrouptriggerdetails_uploads.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails.Uploads
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails.Uploads
## -description
Gets the list of [UploadOperation](uploadoperation.md) objects associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
## -property-value
The list of [UploadOperation](uploadoperation.md) objects associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
## -remarks
## -examples
## -see-also
[BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md), [UploadOperation](uploadoperation.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails.Uploads
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroupTriggerDetails.Uploads
+
+## -description
+Gets the list of [UploadOperation](uploadoperation.md) objects associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
+
+## -property-value
+The list of [UploadOperation](uploadoperation.md) objects associated with the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
+[BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md), [UploadOperation](uploadoperation.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercontentpart.md b/windows.networking.backgroundtransfer/backgroundtransfercontentpart.md
index 86ef0fb13b..6f52e2becf 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercontentpart.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercontentpart.md
@@ -1,3 +1,55 @@
----
-api-id: T:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart
--api-type: winrt class
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart
## -description
Represents a content part of a multi-part transfer request. Each [BackgroundTransferContentPart](backgroundtransfercontentpart.md) object can represent either a single string of text content or a single file payload, but not both.
## -remarks
## -examples
The following example demonstrates how to configure and begin a multi-part upload operation, and is based on the [Background Transfer sample](http://go.microsoft.com/fwlink/p/?linkid=245064) offered in the Windows Sample Gallery.
```javascript
var upload = null;
var promise = null;
function MultipartUpload (uriString, files) {
try {
var uri = Windows.Foundation.Uri(uriString);
var uploader = new Windows.Networking.BackgroundTransfer.BackgroundUploader();
var contentParts = [];
files.forEach(function (file, index) {
var part = new Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart("File" + index, file.name);
part.setFile(file);
contentParts.push(part);
});
// Create a new upload operation.
uploader.createUploadAsync(uri, contentParts).then(function (uploadOperation) {
// Start the upload and persist the promise to be able to cancel the upload.
upload = uploadOperation;
promise = uploadOperation.startAsync().then(complete, error, progress);
});
} catch (err) {
displayError(err);
}
};
```
## -see-also
[CreateDownload(Uri, IStorageFile, IStorageFile)](backgrounddownloader_createdownload_1461958690.md), [CreateUploadAsync](backgrounduploader_createuploadasync.md)
## -capabilities
internetClient, internetClientServer, privateNetworkClientServer
\ No newline at end of file
+---
+-api-id: T:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart
+-api-type: winrt class
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart
+
+## -description
+Represents a content part of a multi-part transfer request. Each [BackgroundTransferContentPart](backgroundtransfercontentpart.md) object can represent either a single string of text content or a single file payload, but not both.
+
+## -remarks
+
+## -examples
+The following example demonstrates how to configure and begin a multi-part upload operation, and is based on the [Background Transfer sample](http://go.microsoft.com/fwlink/p/?linkid=245064) offered in the Windows Sample Gallery.
+
+```javascript
+
+ var upload = null;
+ var promise = null;
+
+ function MultipartUpload (uriString, files) {
+ try {
+
+ var uri = Windows.Foundation.Uri(uriString);
+ var uploader = new Windows.Networking.BackgroundTransfer.BackgroundUploader();
+ var contentParts = [];
+ files.forEach(function (file, index) {
+ var part = new Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart("File" + index, file.name);
+ part.setFile(file);
+ contentParts.push(part);
+ });
+
+ // Create a new upload operation.
+ uploader.createUploadAsync(uri, contentParts).then(function (uploadOperation) {
+ // Start the upload and persist the promise to be able to cancel the upload.
+ upload = uploadOperation;
+ promise = uploadOperation.startAsync().then(complete, error, progress);
+ });
+ } catch (err) {
+ displayError(err);
+ }
+ };
+```
+
+
+
+## -see-also
+[CreateDownload(Uri, IStorageFile, IStorageFile)](backgrounddownloader_createdownload_1461958690.md), [CreateUploadAsync](backgrounduploader_createuploadasync.md)
+
+## -capabilities
+internetClient, internetClientServer, privateNetworkClientServer
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_1221375020.md b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_1221375020.md
index c92069f867..d22e2b48d1 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_1221375020.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_1221375020.md
@@ -1,3 +1,20 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.#ctor
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.BackgroundTransferContentPart
## -description
Creates a [BackgroundTransferContentPart](backgroundtransfercontentpart.md) object.
## -remarks
## -examples
## -see-also
[BackgroundTransferContentPart(String)](backgroundtransfercontentpart_backgroundtransfercontentpart_290278668.md), [BackgroundTransferContentPart(String, String)](backgroundtransfercontentpart_backgroundtransfercontentpart_1571897524.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.BackgroundTransferContentPart
+
+## -description
+Creates a [BackgroundTransferContentPart](backgroundtransfercontentpart.md) object.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[BackgroundTransferContentPart(String)](backgroundtransfercontentpart_backgroundtransfercontentpart_290278668.md), [BackgroundTransferContentPart(String, String)](backgroundtransfercontentpart_backgroundtransfercontentpart_1571897524.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_1571897524.md b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_1571897524.md
index a184b0d0df..1733521458 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_1571897524.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_1571897524.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.#ctor(System.String,System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.BackgroundTransferContentPart
## -description
Creates a [BackgroundTransferContentPart](backgroundtransfercontentpart.md) object that identifies the file content and the name of the file that it represents.
## -parameters
### -param name
Identifies the content.
### -param fileName
The fully qualified file name, including the local path.
## -remarks
## -examples
## -see-also
[CreateDownload(Uri, IStorageFile, IStorageFile)](backgrounddownloader_createdownload_1461958690.md), [CreateUploadAsync](backgrounduploader_createuploadasync.md), [BackgroundTransferContentPart(String)](backgroundtransfercontentpart_backgroundtransfercontentpart_290278668.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.#ctor(System.String,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.BackgroundTransferContentPart
+
+## -description
+Creates a [BackgroundTransferContentPart](backgroundtransfercontentpart.md) object that identifies the file content and the name of the file that it represents.
+
+## -parameters
+### -param name
+Identifies the content.
+
+### -param fileName
+The fully qualified file name, including the local path.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateDownload(Uri, IStorageFile, IStorageFile)](backgrounddownloader_createdownload_1461958690.md), [CreateUploadAsync](backgrounduploader_createuploadasync.md), [BackgroundTransferContentPart(String)](backgroundtransfercontentpart_backgroundtransfercontentpart_290278668.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_290278668.md b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_290278668.md
index 5de0c7a2f2..5decb528cb 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_290278668.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_backgroundtransfercontentpart_290278668.md
@@ -1,3 +1,24 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.#ctor(System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.BackgroundTransferContentPart
## -description
Creates a [BackgroundTransferContentPart](backgroundtransfercontentpart.md) object that identifies the content it represents.
## -parameters
### -param name
Identifies the content.
## -remarks
## -examples
## -see-also
[CreateDownload(Uri, IStorageFile, IStorageFile)](backgrounddownloader_createdownload_1461958690.md), [CreateUploadAsync](backgrounduploader_createuploadasync.md), [BackgroundTransferContentPart(String, String)](backgroundtransfercontentpart_backgroundtransfercontentpart_1571897524.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.#ctor(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.BackgroundTransferContentPart
+
+## -description
+Creates a [BackgroundTransferContentPart](backgroundtransfercontentpart.md) object that identifies the content it represents.
+
+## -parameters
+### -param name
+Identifies the content.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateDownload(Uri, IStorageFile, IStorageFile)](backgrounddownloader_createdownload_1461958690.md), [CreateUploadAsync](backgrounduploader_createuploadasync.md), [BackgroundTransferContentPart(String, String)](backgroundtransfercontentpart_backgroundtransfercontentpart_1571897524.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_setfile_2050151794.md b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_setfile_2050151794.md
index b4e5305613..e2ff0d7ebc 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_setfile_2050151794.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_setfile_2050151794.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetFile(Windows.Storage.IStorageFile)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetFile
## -description
Sets the source file for a [BackgroundTransferContentPart](backgroundtransfercontentpart.md) containing the file for upload.
## -parameters
### -param value
The source file.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetFile(Windows.Storage.IStorageFile)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetFile
+
+## -description
+Sets the source file for a [BackgroundTransferContentPart](backgroundtransfercontentpart.md) containing the file for upload.
+
+## -parameters
+### -param value
+The source file.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_setheader_727062927.md b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_setheader_727062927.md
index 6970ebdd24..a6c883cdc1 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_setheader_727062927.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_setheader_727062927.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetHeader(System.String,System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetHeader
## -description
Sets content disposition header values that indicate the nature of the information that this [BackgroundTransferContentPart](backgroundtransfercontentpart.md) represents.
## -parameters
### -param headerName
The header name.
### -param headerValue
The header value.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetHeader(System.String,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetHeader
+
+## -description
+Sets content disposition header values that indicate the nature of the information that this [BackgroundTransferContentPart](backgroundtransfercontentpart.md) represents.
+
+## -parameters
+### -param headerName
+The header name.
+
+### -param headerValue
+The header value.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_settext_908345632.md b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_settext_908345632.md
index c4179976a0..769a01069f 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfercontentpart_settext_908345632.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfercontentpart_settext_908345632.md
@@ -1,3 +1,24 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetText(System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetText
## -description
Use this method to set text information that the [BackgroundTransferContentPart](backgroundtransfercontentpart.md) represents.
## -parameters
### -param value
A string value used to represent text information. (e.g. api_sig, api_key, auth_token, etc...)
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetText(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart.SetText
+
+## -description
+Use this method to set text information that the [BackgroundTransferContentPart](backgroundtransfercontentpart.md) represents.
+
+## -parameters
+### -param value
+A string value used to represent text information. (e.g. api_sig, api_key, auth_token, etc...)
+
+## -remarks
+
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgroundtransfererror_getstatus_1856274933.md b/windows.networking.backgroundtransfer/backgroundtransfererror_getstatus_1856274933.md
index 1e6c717a57..204208f2f4 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfererror_getstatus_1856274933.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfererror_getstatus_1856274933.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferError.GetStatus(System.Int32)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferError.GetStatus
## -description
Gets the specific error using the returned **HRESULT** value. Possible values are defined by [WebErrorStatus](../windows.web/weberrorstatus.md).
## -parameters
### -param hresult
An **HRESULT** returned during the operation.
## -returns
The error encountered.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferError.GetStatus(System.Int32)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferError.GetStatus
+
+## -description
+Gets the specific error using the returned **HRESULT** value. Possible values are defined by [WebErrorStatus](../windows.web/weberrorstatus.md).
+
+## -parameters
+### -param hresult
+An **HRESULT** returned during the operation.
+
+## -returns
+The error encountered.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgroundtransfergroup.md b/windows.networking.backgroundtransfer/backgroundtransfergroup.md
index 993fb2cc8a..9c581a6b62 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfergroup.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfergroup.md
@@ -1,3 +1,25 @@
----
-api-id: T:Windows.Networking.BackgroundTransfer.BackgroundTransferGroup
--api-type: winrt class
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferGroup
## -description
A named group used to associate multiple download or upload operations. This class makes it easy for your app to create these groups and to complete downloads and uploads simultaneously, in serial, or based on priority.
For example, if a user decides to download and watch episodes from a popular television series, your app can prioritize the earliest episodes in the series or let the user choose which episode to download first.
## -remarks
A [BackgroundTransferGroup](backgroundtransfergroup.md) object can persist to support transfer operations that span app sessions. New methods have been introduced to [BackgroundDownloader](backgrounddownloader.md), [BackgroundUploader](backgrounduploader.md), [DownloadOperation](downloadoperation.md), and [UploadOperation](uploadoperation.md) to simplify accessing groups created in a previous app session.
> [!NOTE]
> Up to 50 unique transfer groups per app are supported.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: T:Windows.Networking.BackgroundTransfer.BackgroundTransferGroup
+-api-type: winrt class
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferGroup
+
+## -description
+A named group used to associate multiple download or upload operations. This class makes it easy for your app to create these groups and to complete downloads and uploads simultaneously, in serial, or based on priority.
+
+For example, if a user decides to download and watch episodes from a popular television series, your app can prioritize the earliest episodes in the series or let the user choose which episode to download first.
+
+## -remarks
+A [BackgroundTransferGroup](backgroundtransfergroup.md) object can persist to support transfer operations that span app sessions. New methods have been introduced to [BackgroundDownloader](backgrounddownloader.md), [BackgroundUploader](backgrounduploader.md), [DownloadOperation](downloadoperation.md), and [UploadOperation](uploadoperation.md) to simplify accessing groups created in a previous app session.
+
+> [!NOTE]
+> Up to 50 unique transfer groups per app are supported.
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgroundtransfergroup_creategroup_1118772609.md b/windows.networking.backgroundtransfer/backgroundtransfergroup_creategroup_1118772609.md
index aa94d672a9..6cd9922c4b 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfergroup_creategroup_1118772609.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfergroup_creategroup_1118772609.md
@@ -1,3 +1,32 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.CreateGroup(System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.CreateGroup
## -description
Creates a transfer group using the provided group name.
## -parameters
### -param name
The name of the group. If a group with the this name already exists, this method will return a reference to the existing group object.
## -returns
The new [BackgroundTransferGroup](backgroundtransfergroup.md).
## -remarks
A [BackgroundTransferGroup](backgroundtransfergroup.md) object can persist to support transfer operations that span app sessions. New methods have been introduced to [BackgroundDownloader](backgrounddownloader.md), [BackgroundUploader](backgrounduploader.md), [DownloadOperation](downloadoperation.md), and [UploadOperation](uploadoperation.md) to simplify accessing groups created in a previous app session.
> [!NOTE]
> Windows 8.1 and Windows Server 2012 R2 support a maximum of 50 unique transfer groups for the entire system. So an app should reuse a unique ID or a small number of unique IDs for all transfer groups created by the app. If more than 50 transfer groups are created on the system, the app will get in an unrecoverable state.
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.CreateGroup(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.CreateGroup
+
+## -description
+Creates a transfer group using the provided group name.
+
+
+
+## -parameters
+### -param name
+The name of the group. If a group with the this name already exists, this method will return a reference to the existing group object.
+
+## -returns
+The new [BackgroundTransferGroup](backgroundtransfergroup.md).
+
+## -remarks
+A [BackgroundTransferGroup](backgroundtransfergroup.md) object can persist to support transfer operations that span app sessions. New methods have been introduced to [BackgroundDownloader](backgrounddownloader.md), [BackgroundUploader](backgrounduploader.md), [DownloadOperation](downloadoperation.md), and [UploadOperation](uploadoperation.md) to simplify accessing groups created in a previous app session.
+
+> [!NOTE]
+> Windows 8.1 and Windows Server 2012 R2 support a maximum of 50 unique transfer groups for the entire system. So an app should reuse a unique ID or a small number of unique IDs for all transfer groups created by the app. If more than 50 transfer groups are created on the system, the app will get in an unrecoverable state.
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgroundtransfergroup_name.md b/windows.networking.backgroundtransfer/backgroundtransfergroup_name.md
index 1cfa249f1f..973bf5e9ec 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfergroup_name.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfergroup_name.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.Name
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.Name
## -description
Gets the name of the group.
## -property-value
The group name.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.Name
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.Name
+
+## -description
+Gets the name of the group.
+
+## -property-value
+The group name.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgroundtransfergroup_transferbehavior.md b/windows.networking.backgroundtransfer/backgroundtransfergroup_transferbehavior.md
index 35767cceec..4804d95249 100644
--- a/windows.networking.backgroundtransfer/backgroundtransfergroup_transferbehavior.md
+++ b/windows.networking.backgroundtransfer/backgroundtransfergroup_transferbehavior.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.TransferBehavior
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.TransferBehavior
## -description
Gets or sets the property used to specify if transfers within this group run simultaneously or in serial. Possible values are defined by [BackgroundTransferBehavior](backgroundtransferbehavior.md).
## -property-value
The group transfer behavior.
## -remarks
When using Background Transfer during development, you may get into a situation where the internal caches of active and completed transfer operations can get out of sync. This may result in the inability to start new transfer operations or interact with existing operations and [BackgroundTransferGroup](backgroundtransfergroup.md) objects. In some cases, attempting to interact with existing operations may trigger a crash. This result can occur if the [TransferBehavior](backgroundtransfergroup_transferbehavior.md) property is set to **Parallel**. This issue occurs only in certain scenarios during development and is not applicable to end users of your app. For more Information, see the Debugging Guidance section in [BackgroundDownloader](backgrounddownloader.md) and [BackgroundUploader](backgrounduploader.md).
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.TransferBehavior
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundTransferGroup.TransferBehavior
+
+## -description
+Gets or sets the property used to specify if transfers within this group run simultaneously or in serial. Possible values are defined by [BackgroundTransferBehavior](backgroundtransferbehavior.md).
+
+## -property-value
+The group transfer behavior.
+
+## -remarks
+When using Background Transfer during development, you may get into a situation where the internal caches of active and completed transfer operations can get out of sync. This may result in the inability to start new transfer operations or interact with existing operations and [BackgroundTransferGroup](backgroundtransfergroup.md) objects. In some cases, attempting to interact with existing operations may trigger a crash. This result can occur if the [TransferBehavior](backgroundtransfergroup_transferbehavior.md) property is set to **Parallel**. This issue occurs only in certain scenarios during development and is not applicable to end users of your app. For more Information, see the Debugging Guidance section in [BackgroundDownloader](backgrounddownloader.md) and [BackgroundUploader](backgrounduploader.md).
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_backgrounduploader_1221375020.md b/windows.networking.backgroundtransfer/backgrounduploader_backgrounduploader_1221375020.md
index 0166ecc479..efd75fd07d 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_backgrounduploader_1221375020.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_backgrounduploader_1221375020.md
@@ -1,3 +1,20 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.#ctor
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.BackgroundUploader
## -description
Instantiates a new [BackgroundUploader](backgrounduploader.md) object.
## -remarks
## -examples
## -see-also
[BackgroundUploader(BackgroundTransferCompletionGroup) constructor](backgrounduploader_backgrounduploader_560098134.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.#ctor
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.BackgroundUploader
+
+## -description
+Instantiates a new [BackgroundUploader](backgrounduploader.md) object.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[BackgroundUploader(BackgroundTransferCompletionGroup) constructor](backgrounduploader_backgrounduploader_560098134.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_backgrounduploader_560098134.md b/windows.networking.backgroundtransfer/backgrounduploader_backgrounduploader_560098134.md
index 1e83020974..f9f0361fe9 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_backgrounduploader_560098134.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_backgrounduploader_560098134.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.#ctor(Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.BackgroundUploader
## -description
Instantiates a new [BackgroundUploader](backgrounduploader.md) object as a member of a completion group.
## -parameters
### -param completionGroup
The completion group that the created BackgroundUploader instance is to be a member of.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.#ctor(Windows.Networking.BackgroundTransfer.BackgroundTransferCompletionGroup)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.BackgroundUploader
+
+## -description
+Instantiates a new [BackgroundUploader](backgrounduploader.md) object as a member of a completion group.
+
+## -parameters
+### -param completionGroup
+The completion group that the created BackgroundUploader instance is to be a member of.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_completiongroup.md b/windows.networking.backgroundtransfer/backgrounduploader_completiongroup.md
index 03936eebf8..0f7eec814c 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_completiongroup.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_completiongroup.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.CompletionGroup
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.CompletionGroup
## -description
Gets the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) associated with the [BackgroundUploader](backgrounduploader.md).
## -property-value
The [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) associated with the [BackgroundUploader](backgrounduploader.md). This property can be null.
## -remarks
## -examples
## -see-also
[BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.CompletionGroup
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.CompletionGroup
+
+## -description
+Gets the [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) associated with the [BackgroundUploader](backgrounduploader.md).
+
+## -property-value
+The [BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md) associated with the [BackgroundUploader](backgrounduploader.md). This property can be null.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[BackgroundTransferCompletionGroup](backgroundtransfercompletiongroup.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_costpolicy.md b/windows.networking.backgroundtransfer/backgrounduploader_costpolicy.md
index f0e19cc175..881d70bf4e 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_costpolicy.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_costpolicy.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.CostPolicy
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.CostPolicy
## -description
Gets or sets the cost policy for the background upload operation.
## -property-value
Indicates whether transfers can occur on costed networks.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.CostPolicy
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.CostPolicy
+
+## -description
+Gets or sets the cost policy for the background upload operation.
+
+## -property-value
+Indicates whether transfers can occur on costed networks.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_createupload_1442890857.md b/windows.networking.backgroundtransfer/backgrounduploader_createupload_1442890857.md
index 5a2d8ea9b9..d2d2b6bf13 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_createupload_1442890857.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_createupload_1442890857.md
@@ -1,3 +1,39 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUpload(Windows.Foundation.Uri,Windows.Storage.IStorageFile)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUpload
## -description
Initializes an [UploadOperation](uploadoperation.md) that indicates the location for and file for upload.
## -parameters
### -param uri
The location for the upload.
### -param sourceFile
The file for upload.
## -returns
The resultant upload operation.
## -remarks
> [!IMPORTANT]
> Creating a large number of transfers on the main UI thread with **CreateUpload** can result in degraded performance of your app's UI. If you are queuing up a large number of transfers, it is recommended that you call **CreateUpload** on a background worker thread as in the following example.
```csharp
operation = await Task.Run(() => { return myDownloader.CreateUpload(uri, file); });
```
## -examples
## -see-also
[UploadOperation](uploadoperation.md), [IStorageFile](../windows.storage/istoragefile.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUpload(Windows.Foundation.Uri,Windows.Storage.IStorageFile)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUpload
+
+## -description
+Initializes an [UploadOperation](uploadoperation.md) that indicates the location for and file for upload.
+
+## -parameters
+### -param uri
+The location for the upload.
+
+### -param sourceFile
+The file for upload.
+
+## -returns
+The resultant upload operation.
+
+## -remarks
+> [!IMPORTANT]
+> Creating a large number of transfers on the main UI thread with **CreateUpload** can result in degraded performance of your app's UI. If you are queuing up a large number of transfers, it is recommended that you call **CreateUpload** on a background worker thread as in the following example.
+
+```csharp
+operation = await Task.Run(() => { return myDownloader.CreateUpload(uri, file); });
+
+```
+
+
+
+## -examples
+
+## -see-also
+[UploadOperation](uploadoperation.md), [IStorageFile](../windows.storage/istoragefile.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_1414694207.md b/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_1414694207.md
index 33f1379a34..b32a6ae85d 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_1414694207.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_1414694207.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync(Windows.Foundation.Uri,Windows.Foundation.Collections.IIterable{Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart})
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync
## -description
Returns an asynchronous operation that, on completion, returns an [UploadOperation](uploadoperation.md) with the specified URI and one or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects.
## -parameters
### -param uri
The location for the upload.
### -param parts
One or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects.
## -returns
The resultant asynchronous [UploadOperation](uploadoperation.md)
## -remarks
## -examples
## -see-also
[CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart), String)](backgrounduploader_createuploadasync_844456383.md), [CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart), String, String)](backgrounduploader_createuploadasync_27612993.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync(Windows.Foundation.Uri,Windows.Foundation.Collections.IIterable{Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart})
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync
+
+## -description
+Returns an asynchronous operation that, on completion, returns an [UploadOperation](uploadoperation.md) with the specified URI and one or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects.
+
+## -parameters
+### -param uri
+The location for the upload.
+
+### -param parts
+One or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects.
+
+## -returns
+The resultant asynchronous [UploadOperation](uploadoperation.md)
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart), String)](backgrounduploader_createuploadasync_844456383.md), [CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart), String, String)](backgrounduploader_createuploadasync_27612993.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_27612993.md b/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_27612993.md
index 3ad2071bfd..cc38ebd48c 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_27612993.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_27612993.md
@@ -1,3 +1,36 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync(Windows.Foundation.Uri,Windows.Foundation.Collections.IIterable{Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart},System.String,System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync
## -description
Returns an asynchronous operation that, on completion, returns an [UploadOperation](uploadoperation.md) with the specified URI, multipart subtype, one or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects, and the delimiter boundary value used to separate each part.
## -parameters
### -param uri
The location for the upload.
### -param parts
One or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects.
### -param subType
The multipart subtype. For example, "related" for content of type "multipart/**related** ".
### -param boundary
A string that is used to identify the delimiter used to indicate separation between provided content parts.
## -returns
The resultant asynchronous [UploadOperation](uploadoperation.md)
## -remarks
## -examples
## -see-also
[CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart))](backgrounduploader_createuploadasync_1414694207.md), [CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart), String)](backgrounduploader_createuploadasync_844456383.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync(Windows.Foundation.Uri,Windows.Foundation.Collections.IIterable{Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart},System.String,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync
+
+## -description
+Returns an asynchronous operation that, on completion, returns an [UploadOperation](uploadoperation.md) with the specified URI, multipart subtype, one or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects, and the delimiter boundary value used to separate each part.
+
+## -parameters
+### -param uri
+The location for the upload.
+
+### -param parts
+One or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects.
+
+### -param subType
+The multipart subtype. For example, "related" for content of type "multipart/**related** ".
+
+### -param boundary
+A string that is used to identify the delimiter used to indicate separation between provided content parts.
+
+## -returns
+The resultant asynchronous [UploadOperation](uploadoperation.md)
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart))](backgrounduploader_createuploadasync_1414694207.md), [CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart), String)](backgrounduploader_createuploadasync_844456383.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_844456383.md b/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_844456383.md
index 9302c1d808..834ea8687e 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_844456383.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_createuploadasync_844456383.md
@@ -1,3 +1,33 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync(Windows.Foundation.Uri,Windows.Foundation.Collections.IIterable{Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart},System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync
## -description
Returns an asynchronous operation that, on completion, returns an [UploadOperation](uploadoperation.md) with the specified URI, one or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects, and the multipart subtype.
## -parameters
### -param uri
The location for the upload.
### -param parts
One or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects.
### -param subType
The multipart subtype. For example, "related" for content of type "multipart/**related** ".
## -returns
The resultant asynchronous [UploadOperation](uploadoperation.md).
## -remarks
## -examples
## -see-also
[CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart))](backgrounduploader_createuploadasync_1414694207.md), [CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart), String, String)](backgrounduploader_createuploadasync_27612993.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync(Windows.Foundation.Uri,Windows.Foundation.Collections.IIterable{Windows.Networking.BackgroundTransfer.BackgroundTransferContentPart},System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadAsync
+
+## -description
+Returns an asynchronous operation that, on completion, returns an [UploadOperation](uploadoperation.md) with the specified URI, one or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects, and the multipart subtype.
+
+## -parameters
+### -param uri
+The location for the upload.
+
+### -param parts
+One or more [BackgroundTransferContentPart](backgroundtransfercontentpart.md) objects.
+
+### -param subType
+The multipart subtype. For example, "related" for content of type "multipart/**related** ".
+
+## -returns
+The resultant asynchronous [UploadOperation](uploadoperation.md).
+
+## -remarks
+
+## -examples
+
+## -see-also
+[CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart))](backgrounduploader_createuploadasync_1414694207.md), [CreateUploadAsync(Uri, IIterable(BackgroundTransferContentPart), String, String)](backgrounduploader_createuploadasync_27612993.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_createuploadfromstreamasync_1788513301.md b/windows.networking.backgroundtransfer/backgrounduploader_createuploadfromstreamasync_1788513301.md
index f457149eac..d104ba2c0c 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_createuploadfromstreamasync_1788513301.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_createuploadfromstreamasync_1788513301.md
@@ -1,3 +1,29 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadFromStreamAsync(Windows.Foundation.Uri,Windows.Storage.Streams.IInputStream)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadFromStreamAsync
## -description
Returns an asynchronous operation that, on completion, returns an [UploadOperation](uploadoperation.md) with the specified URI and the source stream.
## -parameters
### -param uri
The URI associated with the resource.
### -param sourceStream
Represents the source stream.
## -returns
The resultant asynchronous upload operation.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadFromStreamAsync(Windows.Foundation.Uri,Windows.Storage.Streams.IInputStream)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.CreateUploadFromStreamAsync
+
+## -description
+Returns an asynchronous operation that, on completion, returns an [UploadOperation](uploadoperation.md) with the specified URI and the source stream.
+
+## -parameters
+### -param uri
+The URI associated with the resource.
+
+### -param sourceStream
+Represents the source stream.
+
+## -returns
+The resultant asynchronous upload operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_failuretilenotification.md b/windows.networking.backgroundtransfer/backgrounduploader_failuretilenotification.md
index 1a1d36d478..9e762548e0 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_failuretilenotification.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_failuretilenotification.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.FailureTileNotification
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.FailureTileNotification
## -description
Gets and sets the [TileNotification](../windows.ui.notifications/tilenotification.md) used to define the visuals, identification tag, and expiration time of a tile notification used to update the app tile when indicating failure of an upload to the user.
## -property-value
The [TileNotification](../windows.ui.notifications/tilenotification.md) used to indicate upload failure.
## -remarks
## -examples
## -see-also
[TileNotification](../windows.ui.notifications/tilenotification.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.FailureTileNotification
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.FailureTileNotification
+
+## -description
+Gets and sets the [TileNotification](../windows.ui.notifications/tilenotification.md) used to define the visuals, identification tag, and expiration time of a tile notification used to update the app tile when indicating failure of an upload to the user.
+
+## -property-value
+The [TileNotification](../windows.ui.notifications/tilenotification.md) used to indicate upload failure.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[TileNotification](../windows.ui.notifications/tilenotification.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_failuretoastnotification.md b/windows.networking.backgroundtransfer/backgrounduploader_failuretoastnotification.md
index 65c7657fe4..c6fe5e1396 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_failuretoastnotification.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_failuretoastnotification.md
@@ -1,3 +1,31 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.FailureToastNotification
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.FailureToastNotification
## -description
Gets or sets the [ToastNotification](../windows.ui.notifications/toastnotification.md) that defines the content, associated metadata, and events used in a toast notification to indicate failure of an upload to the user.
## -property-value
The [ToastNotification](../windows.ui.notifications/toastnotification.md) used to indicate upload failure.
## -remarks
An app that uses [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) to communicate through a toast notification must declare that it is **Toast capable** in the app manifest file. The **Toast capable** setting is located under the **Notifications** section of **Application** tab. Set the **Toast capable** option to "Yes" so the app can receive toast notifications.
If **Toast capable** is not enabled in the app manifest, then any toast settings in the [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) namespace will be silently ignored and no toasts notifications will be received by the app.
> [!NOTE]
> A user can manually disable or enable toast notifications for your app at any time.
For more information on toast notifications, see [Sending toast notifications](http://msdn.microsoft.com/library/9ec1d052-cff8-415c-aba0-90b088c64039) and [How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011).
## -examples
## -see-also
[How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011), [ToastNotification](../windows.ui.notifications/toastnotification.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.FailureToastNotification
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.FailureToastNotification
+
+## -description
+Gets or sets the [ToastNotification](../windows.ui.notifications/toastnotification.md) that defines the content, associated metadata, and events used in a toast notification to indicate failure of an upload to the user.
+
+## -property-value
+The [ToastNotification](../windows.ui.notifications/toastnotification.md) used to indicate upload failure.
+
+## -remarks
+An app that uses [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) to communicate through a toast notification must declare that it is **Toast capable** in the app manifest file. The **Toast capable** setting is located under the **Notifications** section of **Application** tab. Set the **Toast capable** option to "Yes" so the app can receive toast notifications.
+
+If **Toast capable** is not enabled in the app manifest, then any toast settings in the [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) namespace will be silently ignored and no toasts notifications will be received by the app.
+
+> [!NOTE]
+> A user can manually disable or enable toast notifications for your app at any time.
+
+For more information on toast notifications, see [Sending toast notifications](http://msdn.microsoft.com/library/9ec1d052-cff8-415c-aba0-90b088c64039) and [How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011).
+
+## -examples
+
+## -see-also
+[How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011), [ToastNotification](../windows.ui.notifications/toastnotification.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsasync_1938169689.md b/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsasync_1938169689.md
index 340baa995c..c2803a9516 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsasync_1938169689.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsasync_1938169689.md
@@ -1,3 +1,23 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsAsync
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsAsync
## -description
Returns a collection of pending uploads that are not associated with a group.
## -returns
A collection of pending uploads for the current application instance.
## -remarks
## -examples
## -see-also
[GetCurrentUploadsAsync(String)](backgrounduploader_getcurrentuploadsasync_705160825.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsAsync
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsAsync
+
+## -description
+Returns a collection of pending uploads that are not associated with a group.
+
+## -returns
+A collection of pending uploads for the current application instance.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[GetCurrentUploadsAsync(String)](backgrounduploader_getcurrentuploadsasync_705160825.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsasync_705160825.md b/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsasync_705160825.md
index de50690b43..840dd51061 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsasync_705160825.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsasync_705160825.md
@@ -1,3 +1,30 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsAsync(System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsAsync
## -description
> [!NOTE]
> [GetCurrentUploadsAsync(group)](backgrounduploader_getcurrentuploadsasync_705160825.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [GetCurrentUploadsForTransferGroupAsync](backgrounduploader_getcurrentuploadsfortransfergroupasync.md).
Returns a collection of pending uploads for a specific [Group](backgrounddownloader_group.md).
## -parameters
### -param group
A string indicating a specific group of uploads.
## -returns
A collection of pending uploads for the specific group.
## -remarks
## -examples
## -see-also
[GetCurrentUploadsAsync](backgrounduploader_getcurrentuploadsasync_1938169689.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsAsync(System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsAsync
+
+## -description
+> [!NOTE]
+> [GetCurrentUploadsAsync(group)](backgrounduploader_getcurrentuploadsasync_705160825.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [GetCurrentUploadsForTransferGroupAsync](backgrounduploader_getcurrentuploadsfortransfergroupasync.md).
+
+Returns a collection of pending uploads for a specific [Group](backgrounddownloader_group.md).
+
+## -parameters
+### -param group
+A string indicating a specific group of uploads.
+
+## -returns
+A collection of pending uploads for the specific group.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[GetCurrentUploadsAsync](backgrounduploader_getcurrentuploadsasync_1938169689.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsfortransfergroupasync_467871446.md b/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsfortransfergroupasync_467871446.md
index 1c429fa88d..784481c736 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsfortransfergroupasync_467871446.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_getcurrentuploadsfortransfergroupasync_467871446.md
@@ -1,3 +1,27 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsForTransferGroupAsync(Windows.Networking.BackgroundTransfer.BackgroundTransferGroup)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsForTransferGroupAsync
## -description
Gets all uploads associated with the provided [BackgroundTransferGroup](backgroundtransfergroup.md).
## -parameters
### -param group
Contains information used to identify a group of uploads.
## -returns
A list of uploads currently associated with the specified group.
## -remarks
## -examples
## -see-also
[BackgroundTransferGroup](backgroundtransfergroup.md)
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsForTransferGroupAsync(Windows.Networking.BackgroundTransfer.BackgroundTransferGroup)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.GetCurrentUploadsForTransferGroupAsync
+
+## -description
+Gets all uploads associated with the provided [BackgroundTransferGroup](backgroundtransfergroup.md).
+
+## -parameters
+### -param group
+Contains information used to identify a group of uploads.
+
+## -returns
+A list of uploads currently associated with the specified group.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[BackgroundTransferGroup](backgroundtransfergroup.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_group.md b/windows.networking.backgroundtransfer/backgrounduploader_group.md
index 7304df9fbf..674e207bbd 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_group.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_group.md
@@ -1,3 +1,25 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.Group
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.Group
## -description
> [!NOTE]
> [Group](backgrounduploader_group.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [TransferGroup](backgrounduploader_transfergroup.md).
Gets or sets a string value (e.g. a GUID) indicating the group the upload will belong to. An upload operation with a group ID will only appear in operation enumerations using [GetCurrentDownloadsAsync(String)](backgrounddownloader_getcurrentdownloadsasync_405117897.md) with the specific group string value.
## -property-value
The group name.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.Group
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.Group
+
+## -description
+> [!NOTE]
+> [Group](backgrounduploader_group.md) may be altered or unavailable for releases after Windows 8.1. Instead, use [TransferGroup](backgrounduploader_transfergroup.md).
+
+Gets or sets a string value (e.g. a GUID) indicating the group the upload will belong to. An upload operation with a group ID will only appear in operation enumerations using [GetCurrentDownloadsAsync(String)](backgrounddownloader_getcurrentdownloadsasync_405117897.md) with the specific group string value.
+
+## -property-value
+The group name.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_method.md b/windows.networking.backgroundtransfer/backgrounduploader_method.md
index 7212db32a3..32812bf260 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_method.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_method.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.Method
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.Method
## -description
Gets or sets the HTTP method used for the upload. The default method used for upload operations is POST.
## -property-value
The method to use for the background upload. Setting this property will override the default method used for the operation.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.Method
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.Method
+
+## -description
+Gets or sets the HTTP method used for the upload. The default method used for upload operations is POST.
+
+## -property-value
+The method to use for the background upload. Setting this property will override the default method used for the operation.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_proxycredential.md b/windows.networking.backgroundtransfer/backgrounduploader_proxycredential.md
index e474931c30..e68482815a 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_proxycredential.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_proxycredential.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.ProxyCredential
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.ProxyCredential
## -description
Gets or sets the proxy credentials for the upload.
## -property-value
The credentials used to authenticate with an HTTP proxy.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.ProxyCredential
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.ProxyCredential
+
+## -description
+Gets or sets the proxy credentials for the upload.
+
+## -property-value
+The credentials used to authenticate with an HTTP proxy.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_requestunconstraineduploadsasync_2104878805.md b/windows.networking.backgroundtransfer/backgrounduploader_requestunconstraineduploadsasync_2104878805.md
index d03eb0bc6e..cf09e8e435 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_requestunconstraineduploadsasync_2104878805.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_requestunconstraineduploadsasync_2104878805.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.RequestUnconstrainedUploadsAsync(Windows.Foundation.Collections.IIterable{Windows.Networking.BackgroundTransfer.UploadOperation})
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.RequestUnconstrainedUploadsAsync
## -description
Used to request an unconstrained upload operation. When this method is called the user is provided with a UI prompt that they can use to indicate their consent for an unconstrained operation.An unconstrained transfer operation will run without the resource restrictions normally associated with background network operations while a device is running on battery.
## -parameters
### -param operations
The upload operation to run unconstrained.
## -returns
Indicates if the operations will run unconstrained.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.RequestUnconstrainedUploadsAsync(Windows.Foundation.Collections.IIterable{Windows.Networking.BackgroundTransfer.UploadOperation})
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.RequestUnconstrainedUploadsAsync
+
+## -description
+Used to request an unconstrained upload operation. When this method is called the user is provided with a UI prompt that they can use to indicate their consent for an unconstrained operation.An unconstrained transfer operation will run without the resource restrictions normally associated with background network operations while a device is running on battery.
+
+## -parameters
+### -param operations
+The upload operation to run unconstrained.
+
+## -returns
+Indicates if the operations will run unconstrained.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_servercredential.md b/windows.networking.backgroundtransfer/backgrounduploader_servercredential.md
index 366b7e577f..32a9814580 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_servercredential.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_servercredential.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.ServerCredential
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.ServerCredential
## -description
Gets or sets the credentials to use to authenticate with the origin server.
## -property-value
The credential to use for authentication.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.ServerCredential
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.ServerCredential
+
+## -description
+Gets or sets the credentials to use to authenticate with the origin server.
+
+## -property-value
+The credential to use for authentication.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_setrequestheader_1828905877.md b/windows.networking.backgroundtransfer/backgrounduploader_setrequestheader_1828905877.md
index e9f4eedb0c..b3a5665dc1 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_setrequestheader_1828905877.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_setrequestheader_1828905877.md
@@ -1,3 +1,26 @@
----
-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.SetRequestHeader(System.String,System.String)
--api-type: winrt method
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.SetRequestHeader
## -description
Used to set an HTTP request header.
## -parameters
### -param headerName
The header name.
### -param headerValue
The header value.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: M:Windows.Networking.BackgroundTransfer.BackgroundUploader.SetRequestHeader(System.String,System.String)
+-api-type: winrt method
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.SetRequestHeader
+
+## -description
+Used to set an HTTP request header.
+
+## -parameters
+### -param headerName
+The header name.
+
+### -param headerValue
+The header value.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_successtilenotification.md b/windows.networking.backgroundtransfer/backgrounduploader_successtilenotification.md
index 4a5aba3247..1ae061d186 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_successtilenotification.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_successtilenotification.md
@@ -1,3 +1,23 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.SuccessTileNotification
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.SuccessTileNotification
## -description
Gets and sets the [TileNotification](../windows.ui.notifications/tilenotification.md) used to define the visuals, identification tag, and expiration time of a tile notification used to update the app tile when indicating success of an upload to the user.
## -property-value
The [TileNotification](../windows.ui.notifications/tilenotification.md) used to indicate upload success.
## -remarks
## -examples
## -see-also
[TileNotification](../windows.ui.notifications/tilenotification.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.SuccessTileNotification
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.SuccessTileNotification
+
+## -description
+Gets and sets the [TileNotification](../windows.ui.notifications/tilenotification.md) used to define the visuals, identification tag, and expiration time of a tile notification used to update the app tile when indicating success of an upload to the user.
+
+## -property-value
+The [TileNotification](../windows.ui.notifications/tilenotification.md) used to indicate upload success.
+
+## -remarks
+
+## -examples
+
+## -see-also
+[TileNotification](../windows.ui.notifications/tilenotification.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_successtoastnotification.md b/windows.networking.backgroundtransfer/backgrounduploader_successtoastnotification.md
index cef59ea6f8..dfa0a39b74 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_successtoastnotification.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_successtoastnotification.md
@@ -1,3 +1,31 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.SuccessToastNotification
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.SuccessToastNotification
## -description
Gets or sets the [ToastNotification](../windows.ui.notifications/toastnotification.md) that defines the content, associated metadata, and events used in a toast notification to indicate success of an upload to the user.
## -property-value
The [ToastNotification](../windows.ui.notifications/toastnotification.md) used to indicate upload success.
## -remarks
An app that uses [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) to communicate through a toast notification must declare that it is **Toast capable** in the app manifest file. The **Toast capable** setting is located under the **Notifications** section of **Application** tab. Set the **Toast capable** option to "Yes" so the app can receive toast notifications.
If **Toast capable** is not enabled in the app manifest, then any toast settings in the [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) namespace will be silently ignored and no toasts notifications will be received by the app.
> [!NOTE]
> A user can manually disable or enable toast notifications for your app at any time.
For more information on toast notifications, see [Sending toast notifications](http://msdn.microsoft.com/library/9ec1d052-cff8-415c-aba0-90b088c64039) and [How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011).
## -examples
## -see-also
[How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011), [ToastNotification](../windows.ui.notifications/toastnotification.md)
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.SuccessToastNotification
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.SuccessToastNotification
+
+## -description
+Gets or sets the [ToastNotification](../windows.ui.notifications/toastnotification.md) that defines the content, associated metadata, and events used in a toast notification to indicate success of an upload to the user.
+
+## -property-value
+The [ToastNotification](../windows.ui.notifications/toastnotification.md) used to indicate upload success.
+
+## -remarks
+An app that uses [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) to communicate through a toast notification must declare that it is **Toast capable** in the app manifest file. The **Toast capable** setting is located under the **Notifications** section of **Application** tab. Set the **Toast capable** option to "Yes" so the app can receive toast notifications.
+
+If **Toast capable** is not enabled in the app manifest, then any toast settings in the [Windows.Networking.BackgroundTransfer](windows_networking_backgroundtransfer.md) namespace will be silently ignored and no toasts notifications will be received by the app.
+
+> [!NOTE]
+> A user can manually disable or enable toast notifications for your app at any time.
+
+For more information on toast notifications, see [Sending toast notifications](http://msdn.microsoft.com/library/9ec1d052-cff8-415c-aba0-90b088c64039) and [How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011).
+
+## -examples
+
+## -see-also
+[How to opt in for toast notifications](http://msdn.microsoft.com/library/2d7db7c4-6f5e-47bf-89b6-8ac7a43e2011), [ToastNotification](../windows.ui.notifications/toastnotification.md)
\ No newline at end of file
diff --git a/windows.networking.backgroundtransfer/backgrounduploader_transfergroup.md b/windows.networking.backgroundtransfer/backgrounduploader_transfergroup.md
index 62b2701f10..7519ceff16 100644
--- a/windows.networking.backgroundtransfer/backgrounduploader_transfergroup.md
+++ b/windows.networking.backgroundtransfer/backgrounduploader_transfergroup.md
@@ -1,3 +1,22 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.TransferGroup
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.BackgroundUploader.TransferGroup
## -description
Gets or sets the group that an upload operation will belong to.
## -property-value
The group to associate with the upload.
## -remarks
## -examples
## -see-also
\ No newline at end of file
+---
+-api-id: P:Windows.Networking.BackgroundTransfer.BackgroundUploader.TransferGroup
+-api-type: winrt property
+---
+
+
+
+# Windows.Networking.BackgroundTransfer.BackgroundUploader.TransferGroup
+
+## -description
+Gets or sets the group that an upload operation will belong to.
+
+## -property-value
+The group to associate with the upload.
+
+## -remarks
+
+## -examples
+
+## -see-also
diff --git a/windows.networking.backgroundtransfer/contentprefetcher_contenturis.md b/windows.networking.backgroundtransfer/contentprefetcher_contenturis.md
index 21a6332acc..aed2774ab1 100644
--- a/windows.networking.backgroundtransfer/contentprefetcher_contenturis.md
+++ b/windows.networking.backgroundtransfer/contentprefetcher_contenturis.md
@@ -1,3 +1,43 @@
----
-api-id: P:Windows.Networking.BackgroundTransfer.ContentPrefetcher.ContentUris
--api-type: winrt property
----
# Windows.Networking.BackgroundTransfer.ContentPrefetcher.ContentUris
## -description
Array of URIs to download when prefetch is performed for the app.
## -property-value
A list of [Uri](../windows.foundation/uri.md) objects.
## -remarks
The following example demonstrates the creation and assignment of URIs for prefetching:
```css
//First, create content URIs
var uris = [new Windows.Foundation.Uri("http://www.microsoft.com/logo.jpg"),
new Windows.Foundation.Uri("http://www.microsoft.com/heroimage.jpg")];
//clear the old list
Windows.Networking.BackgroundTransfer.ContentPrefetcher.ContentUris.Clear();
Windows.Networking.BackgroundTransfer.ContentPrefetcher.IndirectContentUri = null; // Remove this if your app never uses IndirectContentUri
//next set these as the content URIs:
for(vari=0;i