Click or drag to resize

PdfDocumentSave Method (String, String, String)

Note: This API is now obsolete.

Saves a PdfDocument into a new file encrypting with the supplied passwords.

Namespace:  Atalasoft.PdfDoc
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 Save(string, PdfSaveOptions) instead.", 
	true)]
public void Save(
	string userPassword,
	string ownerPassword,
	string path
)

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.
path
Type: SystemString
A non-null path to the resulting output file.
Remarks
PDF documents have two passwords associated with them, a user password and an owner password. If an encrypted document is opened by a conforming reader using the owner password, then the security Permissions are ignored. If an encrypted document is opened by a conforming reader using the user password, then the security Permissions are enforced. When a document is created with only one password or one unique password, it is considered the same as having only an owner password.
See Also