MediaProcessingTrigger.RequestAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RequestAsync() |
Triggers the background task and returns a MediaProcessingTriggerResult indicating success or failure of the trigger request. |
RequestAsync(ValueSet) |
Triggers the background task with the provided collection of arguments and returns a MediaProcessingTriggerResult indicating success or failure of the trigger request. |
RequestAsync()
Triggers the background task and returns a MediaProcessingTriggerResult indicating success or failure of the trigger request.
public:
virtual IAsyncOperation<MediaProcessingTriggerResult> ^ RequestAsync() = RequestAsync;
/// [Windows.Foundation.Metadata.Overload("RequestAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<MediaProcessingTriggerResult> RequestAsync();
[Windows.Foundation.Metadata.Overload("RequestAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<MediaProcessingTriggerResult> RequestAsync();
function requestAsync()
Public Function RequestAsync () As IAsyncOperation(Of MediaProcessingTriggerResult)
Returns
An asynchronous operation that returns a MediaProcessingTriggerResult upon completion.
- Attributes
See also
Applies to
RequestAsync(ValueSet)
Triggers the background task with the provided collection of arguments and returns a MediaProcessingTriggerResult indicating success or failure of the trigger request.
public:
virtual IAsyncOperation<MediaProcessingTriggerResult> ^ RequestAsync(ValueSet ^ arguments) = RequestAsync;
/// [Windows.Foundation.Metadata.Overload("RequestAsyncWithArguments")]
IAsyncOperation<MediaProcessingTriggerResult> RequestAsync(ValueSet const& arguments);
[Windows.Foundation.Metadata.Overload("RequestAsyncWithArguments")]
public IAsyncOperation<MediaProcessingTriggerResult> RequestAsync(ValueSet arguments);
function requestAsync(arguments)
Public Function RequestAsync (arguments As ValueSet) As IAsyncOperation(Of MediaProcessingTriggerResult)
Parameters
- arguments
- ValueSet
A collection of arguments that will be passed to the media processing background task.
Returns
An asynchronous operation that returns a MediaProcessingTriggerResult upon completion.
- Attributes