|
| static new Ldsfld | Read (XElement element) |
| | Reads the XML element into a new Ldsfld instance.
|
| |
| static void | Load (Ldsfld inst, XElement element) |
| | Loads the XML element into the instruction.
|
| |
| static Instruction | Read (XElement element) |
| | Reads the XML element into a new InstructionList instance.
|
| |
|
| string | Class [get, set] |
| |
| string | Type [get, set] |
| |
| string | Name [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 35 of file Ldsfld.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.Ldsfld.Load |
( |
Ldsfld | inst, |
|
|
XElement | element ) |
|
static |
Loads the XML element into the instruction.
- Parameters
-
Definition at line 55 of file Ldsfld.cs.
56 {
58 inst.Class = (string)element.Attribute("class");
59 inst.Type = (string)element.Attribute("type");
60 inst.Name = (string)element.Attribute("name");
61 inst.Sig = (string)element.Attribute("sig");
62 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
◆ Read()
| static new Ldsfld IKVM.Tools.Importer.MapXml.Ldsfld.Read |
( |
XElement | element | ) |
|
|
static |
Reads the XML element into a new Ldsfld instance.
- Parameters
-
- Returns
Definition at line 43 of file Ldsfld.cs.
44 {
45 var inst = new Ldsfld();
47 return inst;
48 }
◆ Class
| string IKVM.Tools.Importer.MapXml.Ldsfld.Class |
|
getset |
◆ Name
| string IKVM.Tools.Importer.MapXml.Ldsfld.Name |
|
getset |
◆ Sig
| string IKVM.Tools.Importer.MapXml.Ldsfld.Sig |
|
getset |
◆ Type
| string IKVM.Tools.Importer.MapXml.Ldsfld.Type |
|
getset |
The documentation for this class was generated from the following file: