StorageFile.ReplaceWithStreamedFileFromUriAsync メソッド

定義

指定した IStorageFile オブジェクトによって参照されるファイルの内容を、指定した Uniform Resource Identifier (URI) の新しいデータ ストリームに置き換えます。 このメソッドを使用すると、ストリームを表す StorageFile に最初にアクセスするときに、オンデマンドでデータをダウンロードできます。

データ ストリームは、返される StorageFile を介してアクセスされ、 StorageFile に最初にアクセスしたときにデータがオンデマンドでダウンロードされます。

指定したファイルを表す IStorageFile オブジェクトを、指定した Uniform Resource Identifier (URI) のストリームを提供する新しい StorageFile に置き換えます。

public:
 static IAsyncOperation<StorageFile ^> ^ ReplaceWithStreamedFileFromUriAsync(IStorageFile ^ fileToReplace, Uri ^ uri, IRandomAccessStreamReference ^ thumbnail);
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<StorageFile> ReplaceWithStreamedFileFromUriAsync(IStorageFile const& fileToReplace, Uri const& uri, IRandomAccessStreamReference const& thumbnail);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<StorageFile> ReplaceWithStreamedFileFromUriAsync(IStorageFile fileToReplace, System.Uri uri, IRandomAccessStreamReference thumbnail);
function replaceWithStreamedFileFromUriAsync(fileToReplace, uri, thumbnail)
Public Shared Function ReplaceWithStreamedFileFromUriAsync (fileToReplace As IStorageFile, uri As Uri, thumbnail As IRandomAccessStreamReference) As IAsyncOperation(Of StorageFile)

パラメーター

fileToReplace
IStorageFile

作成された StorageFile でストリームが提供されるファイル。

uri
Uri Uri

StorageFile の作成に使用されるリソースの URI (Uniform Resource Identifier) です。

thumbnail
IRandomAccessStreamReference

作成する StorageFile のサムネイル画像。

高品質のサムネイルの場合、このサムネイルの 1 つの端は少なくとも 1024 ピクセルである必要があります。

戻り値

このメソッドが完了すると、ストリームされたファイルを表す StorageFile オブジェクトが返されます。 その後、この StorageFile オブジェクトを使用して、置き換えるために指定されたファイル (タイプ IStorageFile) ではなく、ファイルの内容にアクセスする必要があります。

属性

適用対象