Show / Hide Table of Contents

Class RuntimeFunction

The runtime function struct is represents a function in the exception header for x64 applications.

Inheritance
object
AbstractStructure
RuntimeFunction
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: PeNet.Header.Pe
Assembly: PeNet.dll
Syntax
public class RuntimeFunction : AbstractStructure

Constructors

| Edit this page View Source

RuntimeFunction(IRawFile, long, ImageSectionHeader[])

Create a new RuntimeFunction object.

Declaration
public RuntimeFunction(IRawFile peFile, long offset, ImageSectionHeader[] sh)
Parameters
Type Name Description
IRawFile peFile

A PE file.

long offset

Raw offset of the runtime function struct.

ImageSectionHeader[] sh

Section Headers of the PE file.

Properties

| Edit this page View Source

FunctionEnd

RVA End of the function in code.

Declaration
public uint FunctionEnd { get; set; }
Property Value
Type Description
uint
| Edit this page View Source

FunctionStart

RVA Start of the function in code.

Declaration
public uint FunctionStart { get; set; }
Property Value
Type Description
uint
| Edit this page View Source

ResolvedUnwindInfo

Unwind Info object belonging to this Runtime Function.

Declaration
public UnwindInfo ResolvedUnwindInfo { get; }
Property Value
Type Description
UnwindInfo
| Edit this page View Source

UnwindInfo

Pointer to the unwind information.

Declaration
public uint UnwindInfo { get; set; }
Property Value
Type Description
uint
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX