Partager via


PdfDocument.LoadFromFileAsync Méthode

Définition

Surcharges

LoadFromFileAsync(IStorageFile)

Génère une opération asynchrone. Une fois l’opération terminée, un objet PdfDocument est retourné, qui représente un document PDF (Portable Document Format).

LoadFromFileAsync(IStorageFile, String)

Génère une opération asynchrone. Une fois l’opération terminée, un objet PdfDocument est retourné, qui représente un document PDF (Portable Document Format). Utilisez cette méthode si le document PDF (Portable Document Format) est protégé par mot de passe.

LoadFromFileAsync(IStorageFile)

Génère une opération asynchrone. Une fois l’opération terminée, un objet PdfDocument est retourné, qui représente un document PDF (Portable Document Format).

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)

Paramètres

file
IStorageFile

Le fichier, qui représente un document PDF (Portable Document Format).

Retours

Opération asynchrone.

Attributs

Voir aussi

S’applique à

LoadFromFileAsync(IStorageFile, String)

Génère une opération asynchrone. Une fois l’opération terminée, un objet PdfDocument est retourné, qui représente un document PDF (Portable Document Format). Utilisez cette méthode si le document PDF (Portable Document Format) est protégé par mot de passe.

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)

Paramètres

file
IStorageFile

Le fichier, qui représente un document PDF (Portable Document Format).

password
String

Platform::String

winrt::hstring

Mot de passe permettant d’ouvrir le document PDF (Portable Document Format), s’il en a besoin.

Retours

Opération asynchrone.

Attributs

Remarques

Si le document PDF (Portable Document Format) ne nécessite pas de mot de passe, cette méthode l’ignore.

Cette méthode retourne une erreur ERROR_WRONG_PASSWORD si le mot de passe incorrect est spécifié.

Voir aussi

S’applique à