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。