This documentation is archived and is not being maintained.
SymAddressKind Enumeration
Visual Studio 2010
Specifies address types for local variables, parameters, and fields in the methods DefineLocalVariable, DefineParameter, and DefineField of the ISymbolWriter interface.
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| ILOffset | A Microsoft intermediate language (MSIL) offset. The addr1 parameter is the MSIL local variable or parameter index. | |
| NativeRVA | A native Relevant Virtual Address (RVA). The addr1 parameter is the RVA in the module. | |
| NativeRegister | A native register address. The addr1 parameter is the register in which the variable is stored. | |
| NativeRegisterRelative | A register-relative address. The addr1 parameter is the register, and the addr2 parameter is the offset. | |
| NativeOffset | A native offset. The addr1 parameter is the offset from the start of the parent. | |
| NativeRegisterRegister | A register-relative address. The addr1 parameter is the low-order register, and the addr2 parameter is the high-order register. | |
| NativeRegisterStack | A register-relative address. The addr1 parameter is the low-order register, the addr2 parameter is the stack register, and the addr3 parameter is the offset from the stack pointer to the high-order part of the value. | |
| NativeStackRegister | A register-relative address. The addr1 parameter is the stack register, the addr2 parameter is the offset from the stack pointer to the low-order part of the value, and the addr3 parameter is the high-order register. | |
| BitField | A bit field. The addr1 parameter is the position where the field starts, and the addr2 parameter is the field length. | |
| NativeSectionOffset | A native section offset. The addr1 parameter is the section, and the addr2 parameter is the offset. |
The addr1, addr2, and addr3 parameters refer to the address parameters in the ISymbolWriter interface methods.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: