Struct MetaDataTablesHdr.MetaDataTableInfo
Represents an table definition entry from the list of available tables in the Meta Data Tables Header in the .Net header of an assembly.
Namespace: PeNet.Header.Net
Assembly: PeNet.dll
Syntax
public struct MetaDataTableInfo
Properties
| Improve this Doc View SourceBytesPerRow
Byte per row in the table.
Declaration
public uint BytesPerRow { readonly get; set; }
Property Value
Type | Description |
---|---|
System.UInt32 |
IsInvalid
Set if the table is invalid for some reason and cannot be parsed correctly.
Declaration
public bool IsInvalid { readonly get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Name of the table.
Declaration
public string Name { readonly get; set; }
Property Value
Type | Description |
---|---|
System.String |
Offset
Offset where the table starts.
Declaration
public uint Offset { readonly get; set; }
Property Value
Type | Description |
---|---|
System.UInt32 |
RowCount
Number of rows of the table.
Declaration
public uint RowCount { readonly get; set; }
Property Value
Type | Description |
---|---|
System.UInt32 |