PdfDocument.LoadFromStreamAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
LoadFromStreamAsync(IRandomAccessStream) |
Crée un objet PdfDocument , représentant un document PDF (Portable Document Format), à partir d’un flux de données qui représente un document PDF (Portable Document Format) dans le système de fichiers. |
LoadFromStreamAsync(IRandomAccessStream, String) |
Crée un objet PdfDocument , représentant un document PDF (Portable Document Format), à partir d’un flux de données qui représente un document PDF (Portable Document Format) dans le système de fichiers. Utilisez cette méthode si le document PDF (Portable Document Format) est protégé par mot de passe. |
LoadFromStreamAsync(IRandomAccessStream)
Crée un objet PdfDocument , représentant un document PDF (Portable Document Format), à partir d’un flux de données qui représente un document PDF (Portable Document Format) dans le système de fichiers.
public:
static IAsyncOperation<PdfDocument ^> ^ LoadFromStreamAsync(IRandomAccessStream ^ inputStream);
/// [Windows.Foundation.Metadata.Overload("LoadFromStreamAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<PdfDocument> LoadFromStreamAsync(IRandomAccessStream const& inputStream);
[Windows.Foundation.Metadata.Overload("LoadFromStreamAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<PdfDocument> LoadFromStreamAsync(IRandomAccessStream inputStream);
function loadFromStreamAsync(inputStream)
Public Shared Function LoadFromStreamAsync (inputStream As IRandomAccessStream) As IAsyncOperation(Of PdfDocument)
Paramètres
- inputStream
- IRandomAccessStream
Flux de données, qui représente un document PDF (Portable Document Format).
Retours
Opération asynchrone.
- Attributs
Voir aussi
S’applique à
LoadFromStreamAsync(IRandomAccessStream, String)
Crée un objet PdfDocument , représentant un document PDF (Portable Document Format), à partir d’un flux de données qui représente un document PDF (Portable Document Format) dans le système de fichiers. Utilisez cette méthode si le document PDF (Portable Document Format) est protégé par mot de passe.
public:
static IAsyncOperation<PdfDocument ^> ^ LoadFromStreamAsync(IRandomAccessStream ^ inputStream, Platform::String ^ password);
/// [Windows.Foundation.Metadata.Overload("LoadFromStreamWithPasswordAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<PdfDocument> LoadFromStreamAsync(IRandomAccessStream const& inputStream, winrt::hstring const& password);
[Windows.Foundation.Metadata.Overload("LoadFromStreamWithPasswordAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<PdfDocument> LoadFromStreamAsync(IRandomAccessStream inputStream, string password);
function loadFromStreamAsync(inputStream, password)
Public Shared Function LoadFromStreamAsync (inputStream As IRandomAccessStream, password As String) As IAsyncOperation(Of PdfDocument)
Paramètres
- inputStream
- IRandomAccessStream
Flux de données, 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 de ERROR_WRONG_PASSWORD si le mot de passe incorrect est spécifié.