我有以下架构:
<?xml version="1.0" encoding="utf-16"?>
<xs:schema xmlns="http://www.RedEyedMonster.co.uk/Integration/ESB" xmlns:b="http://schemas.microsoft.com/BizTalk/2003" elementFormDefault="qualified" targetNamespace="http://www.RedEyedMonster.co.uk/Integration/ESB" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:appinfo>
<b:schemaInfo is_envelope="no" xmlns:b="http://schemas.microsoft.com/BizTalk/2003" />
</xs:appinfo>
</xs:annotation>
<xs:element name="ExternalEvent">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="1" maxOccurs="1" name="XmlType" type="xs:string" />
<xs:element minOccurs="1" maxOccurs="1" name="EscXml" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
其中 EscXml 包含可能非常复杂的转义 XML。是否可以在映射(即 unescape)中将其转换为节点或从 XmlType 派生的模式?