c#如何操作 xml:声明空间问题
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<epp xmlns="urn:iana:xml:ns:epp-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:iana:xml:ns:epp-1.0 epp-1.0.xsd">
<command><check><domain:check xmlns:domain="urn:iana:xml:ns:domain-1.0" xsi:schemaLocation="urn:iana:xml:ns:domain-1.0 domain-1.0.xsd">
<domain:type>test</domain:type>
<domain:name>legoras</domain:name>
</domain:check>
</check>
<unspec/>
<clTRID>
1111</clTRID>
<chksum>test</chksum>
</command>
</epp>"
第一点:domain:check 节点如何创建
第二点:xsi:schemaLocation="urn:iana:xml:ns:epp-1.0 epp-1.0.xsd"如何写入xml
用System.Xml.XmlDocument能否创建成功此类型的xml?