Table of Contents

Class BuildInfoSymbol

Namespace
AsmResolver.Symbols.Pdb.Records
Assembly
AsmResolver.Symbols.Pdb.dll

Represents a symbol containing build information for a file in a PDB image.

public class BuildInfoSymbol : CodeViewSymbol, ICodeViewSymbol
Inheritance
BuildInfoSymbol
Implements
Derived
Inherited Members

Constructors

BuildInfoSymbol()

Initializes an empty build information symbol.

protected BuildInfoSymbol()

BuildInfoSymbol(BuildInfoLeaf)

Wraps a build information leaf into a symbol.

public BuildInfoSymbol(BuildInfoLeaf info)

Parameters

info BuildInfoLeaf

The information to wrap.

Properties

CodeViewSymbolType

Gets the type of symbol this record encodes.

public override CodeViewSymbolType CodeViewSymbolType { get; }

Property Value

CodeViewSymbolType

Info

Gets or sets the information that is wrapped into a symbol.

public BuildInfoLeaf? Info { get; set; }

Property Value

BuildInfoLeaf

Methods

GetInfo()

Obtains the wrapped build information.

protected virtual BuildInfoLeaf? GetInfo()

Returns

BuildInfoLeaf

The information.

Remarks

This method is called upon initialization of the Info property.