SharedStorageAccessManager.RedeemTokenForFileAsync(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
通过提供从源应用接收的共享令牌,获取另一个应用共享的文件。
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。