This example shows how to save the modified content to the underlying source.
C#
using (Metadata metadata = new Metadata(Constants.OutputPpt))
{
// Edit or remove metadata here// Saves the document to the underlying source (stream or file)
metadata.Save();
}