Show / Hide Table of Contents

Class METADATASTREAMHDR

The Meta Data Stream Header contains information about data streams (sections) in a .Net assembly.

Inheritance
System.Object
AbstractStructure
METADATASTREAMHDR
Inherited Members
AbstractStructure.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: PeNet.Structures
Assembly: PeNet.dll
Syntax
public class METADATASTREAMHDR : AbstractStructure

Constructors

| Improve this Doc View Source

METADATASTREAMHDR(Byte[], UInt32)

Create a new Meta Data Stream Header instance from a byte array.

Declaration
public METADATASTREAMHDR(byte[] buff, uint offset)
Parameters
Type Name Description
System.Byte[] buff

Buffer which contains a Meta Data Stream Header.

System.UInt32 offset

Offset in the buffer, where the header starts.

Properties

| Improve this Doc View Source

offset

Relative offset (from Meta Data Header) to the stream.

Declaration
public uint offset { get; set; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

size

Size of the stream content.

Declaration
public uint size { get; set; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

streamName

Name of the stream.

Declaration
public string streamName { get; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
Back to top Generated by DocFX