IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IKVM.Tools.Importer.MapXml.Unbox Class Referencesealed
Inheritance diagram for IKVM.Tools.Importer.MapXml.Unbox:
IKVM.Tools.Importer.MapXml.TypeInstruction IKVM.Tools.Importer.MapXml.Instruction IKVM.Tools.Importer.MapXml.MapXmlElement

Public Member Functions

 Unbox ()
 Initializes a new instance.
 

Static Public Member Functions

static new Unbox Read (XElement element)
 Reads the XML element into a new Unbox instance.
 
static void Load (Unbox inst, XElement element)
 Loads the XML element into the instruction.
 
- Static Public Member Functions inherited from IKVM.Tools.Importer.MapXml.TypeInstruction
static void Load (TypeInstruction inst, XElement element)
 
- Static Public Member Functions inherited from IKVM.Tools.Importer.MapXml.Instruction
static Instruction Read (XElement element)
 Reads the XML element into a new InstructionList instance.
 

Additional Inherited Members

- Static Protected Member Functions inherited from IKVM.Tools.Importer.MapXml.MapXmlElement
static void Load (MapXmlElement e, XElement element)
 Loads the XML element into the instance.
 
- Package Functions inherited from IKVM.Tools.Importer.MapXml.TypeInstruction
- Package Functions inherited from IKVM.Tools.Importer.MapXml.Instruction
- Properties inherited from IKVM.Tools.Importer.MapXml.TypeInstruction
string Type [get, set]
 
- Properties inherited from IKVM.Tools.Importer.MapXml.MapXmlElement
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.
 

Detailed Description

Definition at line 33 of file Unbox.cs.

Constructor & Destructor Documentation

◆ Unbox()

IKVM.Tools.Importer.MapXml.Unbox.Unbox ( )

Initializes a new instance.

Definition at line 61 of file Unbox.cs.

61 : base(OpCodes.Unbox)
62 {
63
64 }

Member Function Documentation

◆ Load()

static void IKVM.Tools.Importer.MapXml.Unbox.Load ( Unbox inst,
XElement element )
static

Loads the XML element into the instruction.

Parameters
inst
element

Definition at line 53 of file Unbox.cs.

54 {
55 Load((TypeInstruction)inst, element);
56 }
static void Load(Unbox inst, XElement element)
Loads the XML element into the instruction.
Definition Unbox.cs:53

◆ Read()

static new Unbox IKVM.Tools.Importer.MapXml.Unbox.Read ( XElement element)
static

Reads the XML element into a new Unbox instance.

Parameters
element
Returns

Definition at line 41 of file Unbox.cs.

42 {
43 var inst = new Unbox();
44 Load(inst, element);
45 return inst;
46 }
Unbox()
Initializes a new instance.
Definition Unbox.cs:61

The documentation for this class was generated from the following file: