c# setting xmlns root attribute serialization
27/09/2010 Leave a comment
İf you want to set xmlns attribute when serialization process you can use XmlRoot attribute namespace .
[Serializable]
[XmlRoot(Namespace= @”http://schemas.microsoft.com/sharepoint/”) ]
public class Elements
{
public Elements()
{
}
private string _ID;
[XmlAttribute]
public string ID
{
get { return _ID; }
set { _ID = value; }
}
}
happy tips..