Show / Hide Table of Contents

Interface ITaggedData

ExtraData tagged value interface.

Namespace: ICSharpCode.SharpZipLib.Zip
Assembly: ICSharpCode.SharpZipLib.dll
Syntax
public interface ITaggedData

Properties

| Improve this Doc View Source

TagID

Get the ID for this tagged data value.

Declaration
ushort TagID { get; }
Property Value
Type Description
System.UInt16

Methods

| Improve this Doc View Source

GetData()

Get the data representing this instance.

Declaration
byte[] GetData()
Returns
Type Description
System.Byte[]

Returns the data for this instance.

| Improve this Doc View Source

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.

  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2000-2022 SharpZipLib Contributors