可以使用XmlRoot属性装饰您的根实体,该属性将在编译时使用。
[XmlRoot(Namespace = "www.contoso.com", ElementName = "MyGroupName", DataType = "string", IsNullable=true)]
或在运行时取消序列化时指定root属性。
XmlRootAttribute xRoot = new XmlRootAttribute();xRoot.ElementName = "user";// xRoot.Namespace = "http://www.cpandl.com";xRoot.IsNullable = true;XmlSerializer xs = new XmlSerializer(typeof(User),xRoot);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)