PdfDocument.LoadFromFileAsync Methode

Definition

Überlädt

LoadFromFileAsync(IStorageFile)

Gibt einen asynchronen Vorgang aus. Nach Abschluss des Vorgangs wird ein PdfDocument-Objekt zurückgegeben, das ein PDF-Dokument (Portable Document Format) darstellt.

LoadFromFileAsync(IStorageFile, String)

Gibt einen asynchronen Vorgang aus. Nach Abschluss des Vorgangs wird ein PdfDocument-Objekt zurückgegeben, das ein PDF-Dokument (Portable Document Format) darstellt. Verwenden Sie diese Methode, wenn das PDF-Dokument (Portable Document Format) kennwortgeschützt ist.

LoadFromFileAsync(IStorageFile)

Gibt einen asynchronen Vorgang aus. Nach Abschluss des Vorgangs wird ein PdfDocument-Objekt zurückgegeben, das ein PDF-Dokument (Portable Document Format) darstellt.

public:
 static IAsyncOperation<PdfDocument ^> ^ LoadFromFileAsync(IStorageFile ^ file);
/// [Windows.Foundation.Metadata.Overload("LoadFromFileAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<PdfDocument> LoadFromFileAsync(IStorageFile const& file);
[Windows.Foundation.Metadata.Overload("LoadFromFileAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<PdfDocument> LoadFromFileAsync(IStorageFile file);
function loadFromFileAsync(file)
Public Shared Function LoadFromFileAsync (file As IStorageFile) As IAsyncOperation(Of PdfDocument)

Parameter

file
IStorageFile

Die Datei, die ein PDF-Dokument (Portable Document Format) darstellt.

Gibt zurück

Der asynchronen Vorgang.

Attribute

Weitere Informationen

Gilt für:

LoadFromFileAsync(IStorageFile, String)

Gibt einen asynchronen Vorgang aus. Nach Abschluss des Vorgangs wird ein PdfDocument-Objekt zurückgegeben, das ein PDF-Dokument (Portable Document Format) darstellt. Verwenden Sie diese Methode, wenn das PDF-Dokument (Portable Document Format) kennwortgeschützt ist.

public:
 static IAsyncOperation<PdfDocument ^> ^ LoadFromFileAsync(IStorageFile ^ file, Platform::String ^ password);
/// [Windows.Foundation.Metadata.Overload("LoadFromFileWithPasswordAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<PdfDocument> LoadFromFileAsync(IStorageFile const& file, winrt::hstring const& password);
[Windows.Foundation.Metadata.Overload("LoadFromFileWithPasswordAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<PdfDocument> LoadFromFileAsync(IStorageFile file, string password);
function loadFromFileAsync(file, password)
Public Shared Function LoadFromFileAsync (file As IStorageFile, password As String) As IAsyncOperation(Of PdfDocument)

Parameter

file
IStorageFile

Die Datei, die ein PDF-Dokument (Portable Document Format) darstellt.

password
String

Platform::String

winrt::hstring

Das Kennwort zum Öffnen des PDF-Dokuments (Portable Document Format), falls erforderlich.

Gibt zurück

Der asynchronen Vorgang.

Attribute

Hinweise

Wenn für das PDF-Dokument (Portable Document Format) kein Kennwort erforderlich ist, wird es von dieser Methode ignoriert.

Diese Methode gibt einen ERROR_WRONG_PASSWORD Fehler zurück, wenn das falsche Kennwort angegeben wird.

Weitere Informationen

Gilt für: