|
| string | Type [get, set] |
| |
| string | Class [get, set] |
| |
| Instruction[] | Instructions [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 30 of file CatchBlock.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.CatchBlock.Load |
( |
CatchBlock | block, |
|
|
XElement | element ) |
|
static |
Loads the XML element into the instruction.
- Parameters
-
Definition at line 50 of file CatchBlock.cs.
51 {
52 Load((InstructionList)block, element);
53 block.Type = (string)element.Attribute("type");
54 block.Class = (string)element.Attribute("class");
55 }
◆ Read()
| static new CatchBlock IKVM.Tools.Importer.MapXml.CatchBlock.Read |
( |
XElement | element | ) |
|
|
static |
Reads the XML element into a new CatchBlock instance.
- Parameters
-
- Returns
Definition at line 38 of file CatchBlock.cs.
39 {
40 var block = new CatchBlock();
42 return block;
43 }
◆ Class
| string IKVM.Tools.Importer.MapXml.CatchBlock.Class |
|
getset |
◆ Type
| string IKVM.Tools.Importer.MapXml.CatchBlock.Type |
|
getset |
The documentation for this class was generated from the following file: