ZipItemCollection.Item Property
Namespace: Rebex.IO.Compression
Assembly: Rebex.Zip.dll (version 7.0.9448)
Item[String]
Gets the ZipItem with specified path.
Declaration
public ZipItem this[string path] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| String | path | Value of the Path to search for. |
Property Value
| Type | Description |
|---|---|
| ZipItem | The ZipItem with specified path; or null reference (Nothing in Visual Basic) if no such item was found. |
Item[Int32]
Gets the item at the specified index.
Declaration
public ZipItem this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | index | The zero-based index of the item to get. |
Property Value
| Type | Description |
|---|---|
| ZipItem | The item at the specified index. |