ZipArchive Constructor (Stream)

Initializes a new instance of ZipArchive on the given stream for reading.

Namespace:  Microsoft.TeamFoundation.Framework.Server
Assembly:  Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)

Syntax

'Declaration
Public Sub New ( _
    stream As Stream _
)
public ZipArchive(
    Stream stream
)
public:
ZipArchive(
    Stream^ stream
)
new : 
        stream:Stream -> ZipArchive
public function ZipArchive(
    stream : Stream
)

Parameters

  • stream
    Type: System.IO.Stream

    The stream that contains the archive to be read.

Exceptions

Exception Condition
ArgumentException

The stream is already closed or does not support reading.

ArgumentNullException

The stream is null.

InvalidDataException

The contents of the stream could not be interpreted as a Zip archive.

.NET Framework Security

See Also

Reference

ZipArchive Class

ZipArchive Overload

Microsoft.TeamFoundation.Framework.Server Namespace