本文整理汇总了C#中System.Xml.Serialization.XmlRootAttribute.XmlRootAttribute构造函数的典型用法代码示例。如果您正苦于以下问题:C# XmlRootAttribute构造函数的具体用法?C# XmlRootAttribute怎么用?C# XmlRootAttribute使用的例子?那么恭喜您, 这里精选的构造函数代码示例或许可以为您提供帮助。您也可以进一步了解该构造函数所在类System.Xml.Serialization.XmlRootAttribute
的用法示例。
在下文中一共展示了XmlRootAttribute构造函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
//引入命名空间
using System;
using System.IO;
using System.Xml.Serialization;
// This is the class that is the default root element.
public class MyClass
{
public string Name;
}
public class Run
{
public static void Main()
{
Run test = new Run();
test.SerializeOrder("OverrideAttribute.xml");
}
public void SerializeOrder(string filename)
{
// Create an XmlSerializer instance using the method below.
XmlSerializer xSer = CreateOverrider();
// Create the object, and set its Name property.
MyClass myClass = new MyClass();
myClass.Name = "New Class Name";
// Serialize the class, and close the TextWriter.
TextWriter writer = new StreamWriter(filename);
xSer.Serialize(writer, myClass);
writer.Close();
}
// Return an XmlSerializer to override the root serialization.
public XmlSerializer CreateOverrider()
{
// Create an XmlAttributes to override the default root element.
XmlAttributes attrs = new XmlAttributes();
// Create an XmlRootAttribute and set its element name and namespace.
XmlRootAttribute xRoot = new XmlRootAttribute();
xRoot.ElementName = "OverriddenRootElementName";
xRoot.Namespace = "http://www.microsoft.com";
// Set the XmlRoot property to the XmlRoot object.
attrs.XmlRoot = xRoot;
XmlAttributeOverrides xOver = new XmlAttributeOverrides();
/* Add the XmlAttributes object to the
XmlAttributeOverrides object. */
xOver.Add(typeof(MyClass), attrs);
// Create the Serializer, and return it.
XmlSerializer xSer = new XmlSerializer
(typeof(MyClass), xOver);
return xSer;
}
}
示例2: SerializeOrder
public void SerializeOrder(string filename)
{
// Create an XmlSerializer instance using the method below.
XmlSerializer myXmlSerializer = CreateOverrider();
// Create the object, and set its Name property.
Student myStudent = new Student();
myStudent.Name = "Student class1";
// Serialize the class, and close the TextWriter.
TextWriter writer = new StreamWriter(filename);
myXmlSerializer.Serialize(writer, myStudent);
writer.Close();
}
// Return an XmlSerializer to override the root serialization.
public XmlSerializer CreateOverrider()
{
// Create an XmlAttributes to override the default root element.
XmlAttributes myXmlAttributes = new XmlAttributes();
// Create an XmlRootAttribute overloaded constructer
//and set its namespace.
XmlRootAttribute myXmlRootAttribute =
new XmlRootAttribute("OverriddenRootElementName");
myXmlRootAttribute.Namespace = "http://www.microsoft.com";
// Set the XmlRoot property to the XmlRoot object.
myXmlAttributes.XmlRoot = myXmlRootAttribute;
XmlAttributeOverrides myXmlAttributeOverrides =
new XmlAttributeOverrides();
/* Add the XmlAttributes object to the
XmlAttributeOverrides object. */
myXmlAttributeOverrides.Add(typeof(Student), myXmlAttributes);
// Create the Serializer, and return it.
XmlSerializer myXmlSerializer = new XmlSerializer
(typeof(Student), myXmlAttributeOverrides);
return myXmlSerializer;
}