StorageFile.GetFileFromApplicationUriAsync(Uri) Methode

Definition

Ruft ein StorageFile-Objekt ab, das die angegebene URI-App-Ressource (Uniform Resource Identifier) darstellt. Beispiele für Beispiel-URIs finden Sie unter Laden von Bildern und Ressourcen, die auf Skalierung, Design, hohen Kontrast und andere zugeschnitten sind.

public:
 static IAsyncOperation<StorageFile ^> ^ GetFileFromApplicationUriAsync(Uri ^ uri);
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<StorageFile> GetFileFromApplicationUriAsync(Uri const& uri);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<StorageFile> GetFileFromApplicationUriAsync(System.Uri uri);
function getFileFromApplicationUriAsync(uri)
Public Shared Function GetFileFromApplicationUriAsync (uri As Uri) As IAsyncOperation(Of StorageFile)

Parameter

uri
Uri Uri

Der Uniform Resource Identifier (URI) der App-Ressource, die eine StorageFile-Datei abrufen soll, die dargestellt werden soll.

Gibt zurück

Nach Abschluss dieser Methode wird ein StorageFile-Objekt zurückgegeben, das die URI-Ressource (Uniform Resource Identifier) darstellt.

Attribute

Beispiele

var uri = new Windows.Foundation.Uri("ms-appx:///datafile.xml")
Windows.Storage.StorageFile.getFileFromApplicationUriAsync(uri).done( /* Your success and error handlers */ );

Hinweise

Mit dieser Methode können Sie entweder mit "ms-appx://" oder "ms-appdata://" auf die Ressourcen Ihrer App zugreifen.

Gilt für:

Weitere Informationen