Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions File-Formats/PDF/Working-with-DigitalSignature.md
Original file line number Diff line number Diff line change
Expand Up @@ -1503,10 +1503,10 @@ signature.TimeStampServer = new TimeStampServer(new Uri("http://syncfusion.digis

//Save the document into stream
MemoryStream stream = new MemoryStream();
loadedDocument.Save(stream);
document.Save(stream);
stream.Position = 0;
//Close the document
loadedDocument.Close(true);
document.Close(true);
//Defining the ContentType for pdf file
string contentType = "application/pdf";
//Define the file name
Expand Down