SharedStorageAccessManager.RedeemTokenForFileAsync(String) 方法

定义

通过提供从源应用接收的共享令牌,获取另一个应用共享的文件。

public:
 static IAsyncOperation<StorageFile ^> ^ RedeemTokenForFileAsync(Platform::String ^ token);
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<StorageFile> RedeemTokenForFileAsync(winrt::hstring const& token);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<StorageFile> RedeemTokenForFileAsync(string token);
function redeemTokenForFileAsync(token)
Public Shared Function RedeemTokenForFileAsync (token As String) As IAsyncOperation(Of StorageFile)

参数

token
String

Platform::String

winrt::hstring

共享文件的共享令牌。

返回

包含共享文件的包装器对象。

属性

注解

当源应用与目标应用共享文件时,目标应用会调用 RedeemTokenForFileAsync 方法来获取共享文件。

有关代码示例,请参阅 SharedStorageAccessManager

适用于