目前我正在尝试使用带有C#的protobuf-net。 我有一个使用System.Xml.Serialization序列化的类;
[XmlType(Namespace="http://www.test.com")]
[XmlRoot(Namespace="http://www.test.com", ElementName="message", IsNullable=false)]
public class TestMessage
{
/// <remarks/>
[XmlAttribute(Form=XmlSchemaForm.Unqualified)]
public string specificationversion;
[XmlElement("errornotification", typeof(errorNotificationfType))]
[XmlIgnore()]
public bool ProductCodeSpecified;
public string SubText;
[XmlElement(DataType = "hexBinary")]
public List<byte[]> Index;
[XmlAttribute()]
public bool Complete;
public object Item;
/// <remarks/>
public InfoType info;
}
现在我想将此部分转换为与protobuf-net一起使用。
我看过一些例子并开始于:
[ProtoContract]
public class TestMessage
{
[ProtoMember(1)]
....
....
}
现在我被卡住了。有人可以帮我改变这门课吗?我应该如何处理XmlType,XmlRoot,XmlAttribute,XmlElement和XmlIgnore部分?
答案 0 :(得分:0)
我认为你可以忽略它们,它的外观Protobuf
没有属性,元素,根或命名空间,所以所有这些都变成ProtoMember
。
[ProtoContract]
public class TestMessage
{
[ProtoMember(1)]
public string specificationversion;
// ignore
public bool ProductCodeSpecified;
[ProtoMember(2)]
public string SubText;
[ProtoMember(3)]
public List<byte[]> Index;
[ProtoMember(4)]
public bool Complete;
public object Item;
[ProtoMember(5)]
public InfoType info;
}
有一些很好的例子here。