Back to Devexpress

RichEditDocumentServerExtensions.SaveDocumentAsync(RichEditDocumentServer, Stream, DocumentFormat, EncryptionSettings) Method

officefileapi-devexpress-dot-xtrarichedit-dot-richeditdocumentserverextensions-dot-savedocumentasync-x28-richeditdocumentserver-stream-documentformat-encryptionsettings-x29.md

latest5.5 KB
Original Source

RichEditDocumentServerExtensions.SaveDocumentAsync(RichEditDocumentServer, Stream, DocumentFormat, EncryptionSettings) Method

Asynchronously saves the document to a stream with the specified document format and encryption options.

Namespace : DevExpress.XtraRichEdit

Assembly : DevExpress.Docs.v25.2.dll

NuGet Package : DevExpress.Document.Processor

Declaration

csharp
public static Task SaveDocumentAsync(
    this RichEditDocumentServer self,
    Stream stream,
    DocumentFormat documentFormat,
    EncryptionSettings encryptionSettings
)
vb
<ExtensionAttribute>
Public Shared Function SaveDocumentAsync(
    self As RichEditDocumentServer,
    stream As Stream,
    documentFormat As DocumentFormat,
    encryptionSettings As EncryptionSettings
) As Task

Parameters

NameTypeDescription
selfRichEditDocumentServer

The current RichEditDocumentServer instance.

| | stream | Stream |

The stream used to output the document.

| | documentFormat | DocumentFormat |

Indicates the document format.

| | encryptionSettings | EncryptionSettings |

An object that contains document encryption options.

|

Returns

TypeDescription
Task

A Task object that represents an asynchronous export operation.

|

Remarks

Important

The RichEditDocumentServerExtensions class is defined in the DevExpress.Docs.v25.2.dll assembly and DevExpress.Document.Processor NuGet package. Add this assembly or package to your project to use the RichEditDocumentServerExtensions members. You need a license for the DevExpress Office File API Subscription or DevExpress Universal Subscription to use this library in production code.

Use this SaveDocumentAsync method overload to encrypt a document with a password.

The SaveDocumentAsync method call does not automatically change the RichEditDocumentServer.Modified property value.

Important

Take into account the following when you call this method:

  • The events fired by this method call may occur in a different thread than the target operation.

  • The operation is not thread safe (the document should not be accessed simultaneously by different threads). Wait until the operation is completed before you continue to work with the document (for example, use the await operator).

The code sample below merges two asynchronously loaded documents and encrypts and exports the result:

csharp
private async void MergeDocuments()
{
    using (RichEditDocumentServer wordProcessor = new RichEditDocumentServer())
    using (RichEditDocumentServer wordProcessor2 = new RichEditDocumentServer())
    {
        await Task.WhenAll(new Task[]
        {
      wordProcessor.LoadDocumentAsync("Document1.docx"),
      wordProcessor2.LoadDocumentAsync("Document2.docx")
        });

        EncryptionSettings encryptionSettings = new EncryptionSettings("12345", EncryptionType.Strong);
        wordProcessor.Document.AppendDocumentContent(wordProcessor2.Document.Range);
        await wordProcessor.SaveDocumentAsync(new FileStream("merged.docx", FileMode.Create, FileAccess.ReadWrite), 
            DocumentFormat.Docx, encryptionSettings);
    }
}
vb
Private Async Sub MergeDocuments()
    Using wordProcessor As New RichEditDocumentServer()
    Using wordProcessor2 As New RichEditDocumentServer()
      Await Task.WhenAll(New Task() { wordProcessor.LoadDocumentAsync("Document1.docx"), wordProcessor2.LoadDocumentAsync("Document2.docx") })

      Dim encryptionSettings As New EncryptionSettings("12345", EncryptionType.Strong)
      wordProcessor.Document.AppendDocumentContent(wordProcessor2.Document.Range)
      Await wordProcessor.SaveDocumentAsync(New FileStream("merged.docx", FileMode.Create, FileAccess.ReadWrite), DocumentFormat.Docx, encryptionSettings)
    End Using
    End Using
  End Sub

See Also

RichEditDocumentServerExtensions Class

RichEditDocumentServerExtensions Members

DevExpress.XtraRichEdit Namespace