Load password-protected document
Leave feedback
GroupDocs.Merger allows to manipulate with documents that are protected with a password.
The following are the steps to load password-protected documents.
- Instantiate LoadOptions object and specify source document password;
- Instantiate Merger object with source document path or stream and LoadOptions object created at previous step.
The following code sample shows how to load password-protected documents.
string filePath = @"c:\sample.docx";
LoadOptions loadOptions = new LoadOptions("SAMPLE_PASSWORD");
using (Merger merger = new Merger(filePath, loadOptions))
{
Console.WriteLine($"Document loaded successfully.");
}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.