| MetaClass || Text || Specify the {{UBIK}} MetaClass either by its name or its {{Guid}} (via UID:Guid)
|}
== Classes ==
=== XMLDataInterface ===
* Process XML data and create or update {{UBIK}} objects
* Process mapping information and apply on XML / {{UBIK}} data
<source lang="csharp">
namespace UBIK.Interface.Module.XML
public class XMLDataInterface : UBIKStandardInterface, IUBIKImport, IUBIKExport
</source>
=== XMLDataImport ===
* Creates or update {{UBIK}} objects from XML data using a XML converter and XML mapping
<source lang="csharp">
namespace UBIK.Interface.Module.XML
public class XMLDataImport
</source>
=== XMLDataExport ===
* Creates XML data from UBIKĀ® objects using a XML converter and XML mapping
<source lang="csharp">
namespace UBIK.Interface.Module.XML
public class XMLDataExport
</source>
=== XMLConverter ===
* Converts {{UBIK}} MetaClasses / MetaProperties into XML elements / attributes and vice versa
* Translates XML items into {{UBIK}} content objects
<source lang="csharp">
namespace UBIK.Interface.Module.XML
public class XMLConverter
</source>
== See also ==