1。 XML Serializer。这个是 ASP。NET 中 Web Service SOAP 请求的发送和接受默认使用的方式。指序列化对象的公共属性和成员。
2。 SOAP Serializer . DotNet Remoting 使用的对象传送方式。这个时候传送的对象要求有 Serializable 标志。
3. BinarySerializer 。同2, 只不过是二进制格式。
代码示例:
考虑一个 Person 对象,会有一些属性比如fullname,唯一 ID,电话(最多三个。)
[Serializable]
public class Phone
{
private string _phoneNumber="";
private string _phoneType="";
public Phone(string phoneType,string phoneNumner)
{
_phoneNumber=phoneNumner;
_phoneType=phoneType;
}
public string PhoneDescp
{
get
{
return string.Format("{0}\t{1}",_phoneType,_phoneNumber);
}
}
public Phone()
{
}
}
[Serializable]
public class Person
{
public Person()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
//电话列表假设只能最多有三个
private Phone [] _allPhones=new Phone[3];
//全称
private string fullName="";
//唯一的标识
private System.Guid id=System.Guid.NewGuid();
public string FullName
{
get{return fullName;}
set{fullName=value;}
}
/// <summary>
/// 标识
/// </summary>
public System.Guid ID
{
get
{
return id;
}
}
public Phone this[int phoneIndex]
{
get
{
System.Diagnostics.Debug.Assert(phoneIndex>=0 && phoneIndex<=2);
return _allPhones[phoneIndex];
}
set
{
System.Diagnostics.Debug.Assert(phoneIndex>=0 && phoneIndex<=2);
_allPhones[phoneIndex]=value;
}
}
}
如果用 XML Serializer
只能看到一下结果。只序列华了 fullname
---------------------------
---------------------------
<?xml version="1.0" encoding="utf-16"?>
<Person xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<FullName>MontaqueHou</FullName>
</Person>
---------------------------
OK
---------------------------
注意 GUID 和 Phone 都没有序列化。长度为195 个字节。
而采用 SOAP 序列华则序列化了所有,2022 个字节。
---------------------------
---------------------------
<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<a1:Person id="ref-1" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/Comparation/Comparation%2C%20Version%3D1.0.1698.18683%2C%20Culture%3Dneutral%2C%20PublicKeyToken%3Dnull">
<_allPhones href="#ref-3"/>
<fullName id="ref-4">MontaqueHou</fullName>
<id>
<_a>120451046</_a>
<_b>-8025</_b>
<_c>17783</_c>
<_d>155</_d>
<_e>187</_e>
<_f>62</_f>
<_g>53</_g>
<_h>99</_h>
<_i>190</_i>
<_j>9</_j>
<_k>169</_k>
</id>
</a1:Person>
<SOAP-ENC:Array id="ref-3" SOAP-ENC:arrayType="a1:Phone[3]" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/Comparation/Compa