|
| string | Type [get, set] |
| |
| string | Class [get, set] |
| |
| string | Method [get, set] |
| |
| string | Field [get, set] |
| |
| string | Sig [get, set] |
| |
| int | LineNumber [get, set] |
| | Gets the line number in the source file where this element occurs.
|
| |
| int | LinePosition [get, set] |
| | Gets the line position in the source file where this element occurs.
|
| |
|
| static void | Load (MapXmlElement e, XElement element) |
| | Loads the XML element into the instance.
|
| |
Definition at line 39 of file Ldtoken.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.Ldtoken.Load |
( |
Ldtoken | inst, |
|
|
XElement | element ) |
|
static |
Loads the XML element into the instruction.
- Parameters
-
Definition at line 59 of file Ldtoken.cs.
60 {
62 inst.Type = (string)element.Attribute("type");
63 inst.Class = (string)element.Attribute("class");
64 inst.Method = (string)element.Attribute("method");
65 inst.Field = (string)element.Attribute("field");
66 inst.Sig = (string)element.Attribute("sig");
67 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
◆ Read()
| static new Ldtoken IKVM.Tools.Importer.MapXml.Ldtoken.Read |
( |
XElement | element | ) |
|
|
static |
Reads the XML element into a new Ldtoken instance.
- Parameters
-
- Returns
Definition at line 47 of file Ldtoken.cs.
48 {
49 var inst = new Ldtoken();
51 return inst;
52 }
◆ Class
| string IKVM.Tools.Importer.MapXml.Ldtoken.Class |
|
getset |
◆ Field
| string IKVM.Tools.Importer.MapXml.Ldtoken.Field |
|
getset |
◆ Method
| string IKVM.Tools.Importer.MapXml.Ldtoken.Method |
|
getset |
◆ Sig
| string IKVM.Tools.Importer.MapXml.Ldtoken.Sig |
|
getset |
◆ Type
| string IKVM.Tools.Importer.MapXml.Ldtoken.Type |
|
getset |
The documentation for this class was generated from the following file: