PDF for UWP | ComponentOne
C1.Xaml.Pdf Namespace / C1PdfDocumentBase Class / Save(Stream) Method
System.IO.Stream object to use for saving the document.

In This Topic
    Save(Stream) Method
    In This Topic
    Saves the Pdf document to a System.IO.Stream.
    Syntax
    'Declaration
     
    
    Public Sub Save( _
       ByVal stream As Stream _
    ) 
    public void Save( 
       Stream stream
    )

    Parameters

    stream
    System.IO.Stream object to use for saving the document.
    Remarks
    Saving the Pdf document to a System.IO.Stream object is often used in Web scenarios, when you are creating a Response object or storing the document in the a cache, and don't want to create temporary files.
    See Also