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.StreamThe 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.