SymAddressKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies address types for local variables, parameters, and fields in the methods DefineLocalVariable(String, FieldAttributes, Byte[], SymAddressKind, Int32, Int32, Int32, Int32, Int32), DefineParameter(String, ParameterAttributes, Int32, SymAddressKind, Int32, Int32, Int32), and DefineField(SymbolToken, String, FieldAttributes, Byte[], SymAddressKind, Int32, Int32, Int32) of the ISymbolWriter interface.
public enum class SymAddressKind
public enum SymAddressKind
[System.Serializable]
public enum SymAddressKind
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum SymAddressKind
type SymAddressKind =
[<System.Serializable>]
type SymAddressKind =
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type SymAddressKind =
Public Enum SymAddressKind
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
ILOffset | 1 | A Microsoft intermediate language (MSIL) offset. The |
NativeRVA | 2 | A native Relevant Virtual Address (RVA). The |
NativeRegister | 3 | A native register address. The |
NativeRegisterRelative | 4 | A register-relative address. The |
NativeOffset | 5 | A native offset. The |
NativeRegisterRegister | 6 | A register-relative address. The |
NativeRegisterStack | 7 | A register-relative address. The |
NativeStackRegister | 8 | A register-relative address. The |
BitField | 9 | A bit field. The |
NativeSectionOffset | 10 | A native section offset. The |
Remarks
The addr1
, addr2
, and addr3
parameters refer to the address parameters in the ISymbolWriter interface methods.