PdfDocument.LoadFromStreamAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
LoadFromStreamAsync(IRandomAccessStream) |
从表示文件系统中的可移植文档格式 (PDF) 文档的数据流中创建 PdfDocument 对象,该对象表示可移植文档格式 (PDF) 文档。 |
LoadFromStreamAsync(IRandomAccessStream, String) |
从表示文件系统中的可移植文档格式 (PDF) 文档的数据流中创建 PdfDocument 对象,该对象表示可移植文档格式 (PDF) 文档。 如果可移植文档格式 (PDF) 文档受密码保护,请使用此方法。 |
LoadFromStreamAsync(IRandomAccessStream)
从表示文件系统中的可移植文档格式 (PDF) 文档的数据流中创建 PdfDocument 对象,该对象表示可移植文档格式 (PDF) 文档。
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)
参数
- inputStream
- IRandomAccessStream
数据流,表示可移植文档格式 (PDF) 文档。
返回
异步操作。
- 属性
另请参阅
适用于
LoadFromStreamAsync(IRandomAccessStream, String)
从表示文件系统中的可移植文档格式 (PDF) 文档的数据流中创建 PdfDocument 对象,该对象表示可移植文档格式 (PDF) 文档。 如果可移植文档格式 (PDF) 文档受密码保护,请使用此方法。
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)
参数
- inputStream
- IRandomAccessStream
数据流,表示可移植文档格式 (PDF) 文档。
- password
-
String
Platform::String
winrt::hstring
打开可移植文档格式的密码 (PDF) 文档(如果需要)。
返回
异步操作。
- 属性
注解
如果可移植文档格式 (PDF) 文档不需要密码,此方法将忽略它。
如果指定了错误的密码,此方法将返回 ERROR_WRONG_PASSWORD 错误。