ComponentOne Zip for UWP
C1.UWP.Zip Assembly / C1.C1Zip Namespace / C1ZipEntryCollection Class / OpenWriter Method / OpenWriter(String,Boolean) Method
The name of the new entry.
Whether to use a memory stream or temporary file.

In This Topic
    OpenWriter(String,Boolean) Method
    In This Topic
    Opens a stream for writing an entry into the zip file.
    Syntax
    'Declaration
     
    Public Overloads Function OpenWriter( _
       ByVal entryName As System.String, _
       ByVal useMemory As System.Boolean _
    ) As System.IO.Stream
    public System.IO.Stream OpenWriter( 
       System.string entryName,
       System.bool useMemory
    )

    Parameters

    entryName
    The name of the new entry.
    useMemory
    Whether to use a memory stream or temporary file.

    Return Value

    A stream that can be used to write data into the zip file. The entry is not added until the stream is closed.
    See Also