|
| static void | Load (MapXmlElement e, XElement element) |
| | Loads the XML element into the instance.
|
| |
Definition at line 35 of file ConditionalInstruction.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.ConditionalInstruction.Load |
( |
ConditionalInstruction | inst, |
|
|
XElement | element ) |
|
static |
Loads the XML element into the instance.
- Parameters
-
- Returns
Definition at line 55 of file ConditionalInstruction.cs.
56 {
58 inst.Framework = (string)element.Attribute("framework");
59 inst.Code = element.Elements(MapXmlSerializer.NS + "code").Select(InstructionList.Read).FirstOrDefault();
60 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
◆ Read()
Reads the XML element into a new instance.
- Parameters
-
- Returns
Definition at line 43 of file ConditionalInstruction.cs.
44 {
45 var inst = new ConditionalInstruction();
47 return inst;
48 }
◆ Code
◆ Framework
| string IKVM.Tools.Importer.MapXml.ConditionalInstruction.Framework |
|
getset |
The documentation for this class was generated from the following file: