Blog Post :
Using XmlSerializer with external serializable types
Listing 2 : Base and external XML data sample
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
ExtensibleData
xmlns:
xsi
=
http://www.w3.org/2001/XMLSchema-instance
xmlns:
xsd
=
"http://www.w3.org/2001/XMLSchema"
ID
=
"001"
xsi:
noNamespaceSchemaLocation
=
"ExtData.xsd"
>
<
Name
>
XML-FX.COM
</
Name
>
<
Description
>
XML information website
</
Description
>
<
ExternData
type
=
"WebsiteData.Website, WebsiteData, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
>
<
Website
Url
=
"http://xml-fx.com"
>
<
Contact
>
Joe Bloggs
</
Contact
>
<
Email
>
info@xml-fx.com
</
Email
>
</
Website
>
</
ExternData
>
</
ExtensibleData
>