PdfDocumentSignerGetInfo Method (String, String, Stream) |
Note: This API is now obsolete.
Gets the signature information for a PDF document.
Namespace:
Atalasoft.PdfDoc.DigitalSignatures
Assembly:
Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax [ObsoleteAttribute("This method is obsolete. Use GetInfo(Stream stream, SecureString userPassword, SecureString ownerPassword) instead.",
false)]
public static PdfDocumentSignatureInformation GetInfo(
string userPassword,
string ownerPassword,
Stream stream
)
<ObsoleteAttribute("This method is obsolete. Use GetInfo(Stream stream, SecureString userPassword, SecureString ownerPassword) instead.",
false)>
Public Shared Function GetInfo (
userPassword As String,
ownerPassword As String,
stream As Stream
) As PdfDocumentSignatureInformation
Parameters
- userPassword
- Type: SystemString
The user password to use for this document. This parameter may be null.
- ownerPassword
- Type: SystemString
The owner password to use for this document. This parameter may be null.
- stream
- Type: System.IOStream
The stream that contains a PDF file.
Return Value
Type:
PdfDocumentSignatureInformationExceptions Exception | Condition |
---|
ArgumentNullException | stream |
IncorrectPasswordException |
If the password is incorrect or cannot be verified, the constructor will
throw a IncorrectPasswordException.
|
See Also