StorageFile.CreateStreamedFileFromUriAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した Uniform Resource Identifier (URI) リソースからのデータ ストリームを表す StorageFile を作成します。 このメソッドを使用すると、ストリームを表す StorageFile に最初にアクセスするときに、アプリでオンデマンドでデータをダウンロードできます。
public:
static IAsyncOperation<StorageFile ^> ^ CreateStreamedFileFromUriAsync(Platform::String ^ displayNameWithExtension, Uri ^ uri, IRandomAccessStreamReference ^ thumbnail);
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<StorageFile> CreateStreamedFileFromUriAsync(winrt::hstring const& displayNameWithExtension, Uri const& uri, IRandomAccessStreamReference const& thumbnail);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<StorageFile> CreateStreamedFileFromUriAsync(string displayNameWithExtension, System.Uri uri, IRandomAccessStreamReference thumbnail);
function createStreamedFileFromUriAsync(displayNameWithExtension, uri, thumbnail)
Public Shared Function CreateStreamedFileFromUriAsync (displayNameWithExtension As String, uri As Uri, thumbnail As IRandomAccessStreamReference) As IAsyncOperation(Of StorageFile)
パラメーター
- displayNameWithExtension
-
String
Platform::String
winrt::hstring
ファイルの種類の拡張子を含む、作成する StorageFile のわかりやすい名前。
StorageFile の作成に使用されるリソースの URI (Uniform Resource Identifier) です。
- thumbnail
- IRandomAccessStreamReference
作成する StorageFile のサムネイル画像。
高品質のサムネイルの場合、このサムネイルの 1 つの端は少なくとも 1024 ピクセルである必要があります。
戻り値
このメソッドが完了すると、Uniform Resource Identifier (URI) リソースを表す StorageFile オブジェクトが返されます。
- 属性
注釈
このメソッドは CreateStreamedFileAsync とほぼ同じですが、このメソッドを使用する場合を除き、システムはアプリの代わりに StreamedFileDataRequestedHandler を 提供し、この関数を実装して、指定した Uri を ストリームファイルにダウンロードします。