共用方式為


DataProviderHandler 代理人

定義

在目標應用程式要求資料時提供資料,而不是事先在 DataPackage 中包含資料。 [ 當來源應用程式想要避免不必要的資源密集工作,例如執行格式轉換時,就會使用 DataProviderHandler。

public delegate void DataProviderHandler(DataProviderRequest ^ request);
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(3891058464, 62196, 18989, 146, 14, 23, 10, 47, 72, 42, 39)]
class DataProviderHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.Guid(3891058464, 62196, 18989, 146, 14, 23, 10, 47, 72, 42, 39)]
public delegate void DataProviderHandler(DataProviderRequest request);
var dataProviderHandlerHandler = function(request){
/* Your code */
}
Public Delegate Sub DataProviderHandler(request As DataProviderRequest)

參數

request
DataProviderRequest

包含使用者想要共用的資料。

屬性

Windows 需求

裝置系列
Windows 10 (已於 10.0.10240.0 引進)
API contract
Windows.Foundation.UniversalApiContract (已於 v1.0 引進)

適用於