MediaProcessingTrigger.RequestAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
RequestAsync() |
触发后台任务并返回指示触发器请求成功或失败的 MediaProcessingTriggerResult 。 |
RequestAsync(ValueSet) |
使用提供的参数集合触发后台任务,并返回指示触发器请求成功或失败的 MediaProcessingTriggerResult 。 |
RequestAsync()
触发后台任务并返回指示触发器请求成功或失败的 MediaProcessingTriggerResult 。
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)
返回
完成时返回 MediaProcessingTriggerResult 的异步操作。
- 属性
另请参阅
适用于
RequestAsync(ValueSet)
使用提供的参数集合触发后台任务,并返回指示触发器请求成功或失败的 MediaProcessingTriggerResult 。
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)
参数
- arguments
- ValueSet
将传递给媒体处理后台任务的参数集合。
返回
完成时返回 MediaProcessingTriggerResult 的异步操作。
- 属性