Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ZipFile.cs
1namespace Waher.Content.Zip
2{
6 public class ZipFile
7 {
8 private readonly byte[] binary;
9
14 public ZipFile(byte[] Binary)
15 {
16 this.binary = Binary;
17 }
18
22 public byte[] Binary => this.binary;
23 }
24}
Encapsulates a ZIP File
Definition: ZipFile.cs:7
byte[] Binary
Binary representation of ZIP file.
Definition: ZipFile.cs:22
ZipFile(byte[] Binary)
Encapsulates a ZIP File
Definition: ZipFile.cs:14