ComponentOne Zip for UWP
C1.UWP.Zip Assembly / C1.C1Zip Namespace / C1ZipEntryCollection Class / Add Method / Add(Stream,String,DateTime) Method
Stream that contains data for the new entry.
Name to be used for the new entry.
The date and time when the file was last modified.

In This Topic
    Add(Stream,String,DateTime) Method
    In This Topic
    Adds a stream to the current zip file.
    Syntax
    'Declaration
     
    Public Overloads Sub Add( _
       ByVal stream As System.IO.Stream, _
       ByVal entryName As System.String, _
       ByVal dateTime As System.Date _
    ) 
    public void Add( 
       System.IO.Stream stream,
       System.string entryName,
       System.DateTime dateTime
    )

    Parameters

    stream
    Stream that contains data for the new entry.
    entryName
    Name to be used for the new entry.
    dateTime
    The date and time when the file was last modified.
    See Also