|
| string | Class [get, set] |
| |
| string | Name [get, set] |
| |
| string | Sig [get, set] |
| |
| InstructionList | Code [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 31 of file ReplaceMethodCall.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.ReplaceMethodCall.Load |
( |
ReplaceMethodCall | inst, |
|
|
XElement | element ) |
|
static |
Loads the XML element into the instruction.
- Parameters
-
Definition at line 51 of file ReplaceMethodCall.cs.
52 {
53 Load((MapXmlElement)inst, element);
54 inst.Class = (string)element.Attribute("class");
55 inst.Name = (string)element.Attribute("name");
56 inst.Sig = (string)element.Attribute("sig");
57 inst.Code = element.Elements(MapXmlSerializer.NS + "code").Select(InstructionList.Read).FirstOrDefault();
58 }
◆ Read()
| static ReplaceMethodCall IKVM.Tools.Importer.MapXml.ReplaceMethodCall.Read |
( |
XElement | element | ) |
|
|
static |
Reads the XML element into a new ReplaceMethodCall instance.
- Parameters
-
- Returns
Definition at line 39 of file ReplaceMethodCall.cs.
40 {
41 var inst = new ReplaceMethodCall();
43 return inst;
44 }
◆ Class
| string IKVM.Tools.Importer.MapXml.ReplaceMethodCall.Class |
|
getset |
◆ Code
◆ Name
| string IKVM.Tools.Importer.MapXml.ReplaceMethodCall.Name |
|
getset |
◆ Sig
| string IKVM.Tools.Importer.MapXml.ReplaceMethodCall.Sig |
|
getset |
The documentation for this class was generated from the following file: