|
| static void | Load (MapXmlElement e, XElement element) |
| | Loads the XML element into the instance.
|
| |
Definition at line 36 of file ExceptionBlock.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.ExceptionBlock.Load |
( |
ExceptionBlock | inst, |
|
|
XElement | element ) |
|
static |
Loads the XML element into the instruction.
- Parameters
-
Definition at line 56 of file ExceptionBlock.cs.
57 {
59 inst.Try = element.Elements(MapXmlSerializer.NS + "try").Select(InstructionList.Read).FirstOrDefault();
60 inst.Catch = element.Elements(MapXmlSerializer.NS + "catch").Select(CatchBlock.Read).FirstOrDefault();
61 inst.Finally = element.Elements(MapXmlSerializer.NS + "finally").Select(InstructionList.Read).FirstOrDefault();
62 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
◆ Read()
| static new ExceptionBlock IKVM.Tools.Importer.MapXml.ExceptionBlock.Read |
( |
XElement | element | ) |
|
|
static |
Reads the XML element into a new ExceptionBlock instance.
- Parameters
-
- Returns
Definition at line 44 of file ExceptionBlock.cs.
45 {
46 var inst = new ExceptionBlock();
48 return inst;
49 }
◆ Catch
| CatchBlock IKVM.Tools.Importer.MapXml.ExceptionBlock.Catch |
|
getset |
◆ Finally
◆ Try
The documentation for this class was generated from the following file: