Interface ITaggedData
ExtraData tagged value interface.
Namespace: ICSharpCode.SharpZipLib.Zip
Assembly: ICSharpCode.SharpZipLib.dll
Syntax
public interface ITaggedData
Properties
| Improve this Doc View SourceTagID
Get the ID for this tagged data value.
Declaration
ushort TagID { get; }
Property Value
| Type | Description |
|---|---|
| System.UInt16 |
Methods
| Improve this Doc View SourceGetData()
Get the data representing this instance.
Declaration
byte[] GetData()
Returns
| Type | Description |
|---|---|
| System.Byte[] | Returns the data for this instance. |
SetData(Byte[], Int32, Int32)
Set the contents of this instance from the data passed.
Declaration
void SetData(byte[] data, int offset, int count)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Byte[] | data | The data to extract contents from. |
| System.Int32 | offset | The offset to begin extracting data from. |
| System.Int32 | count | The number of bytes to extract. |