Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 1.21 KB

mediastreamsourcestartingrequest_getdeferral_254836512.md

File metadata and controls

25 lines (17 loc) · 1.21 KB
-api-id -api-type
M:Windows.Media.Core.MediaStreamSourceStartingRequest.GetDeferral
winrt method

Windows.Media.Core.MediaStreamSourceStartingRequest.GetDeferral

-description

Defers completing the MediaStreamSource.Starting event.

-returns

The deferral.

-remarks

You can use a deferral when you want to make an asynchronous call in response to the Starting event. For example, if you need to establish a HTTP connection or open a file for reading. The MediaStreamSource will then wait for you to mark the deferral as complete before it begins raising the SampleRequested event.

To create a deferral, call the GetDeferral method to instruct the MediaStreamSource to wait for your asynchronous call to complete. When you are ready to start receiving SampleRequested events, call the Complete method to end the deferral.

-examples

-see-also