NetworkComponent sınıfındaki _updatedComponents nesneleri adlı bir dizilim var. Kök elemanın (= dizi) isminin ve ad alanının değiştirileceği ve bireysel NetworkComponent-maddesinin isminin bileşen olarak değiştirileceği şekilde serileştirmek zorundayım.Bir diziyi serileştirirken XmlAttributeOverrides nasıl kullanılır?
System.InvalidOperationException: Ben bunun altında bir kod bir istisna neden olan bir hata yansıtan tip 'ComponentSyncService.NetworkComponent []' vardı. ---> System.InvalidOperationException: ComponentSyncService.NetworkComponent [] türünde XmlRoot ve XmlType öznitelikleri belirtilmemiş olabilir.
Kodu:
_updatedComponents
nedir
XmlAttributeOverrides xaos = new XmlAttributeOverrides();
// the array itself aka the root. change name and namespace
XmlElementAttribute xea = new XmlElementAttribute(_updatedComponents.GetType());
xea.Namespace = "http://www.example.com/nis/componentsync";
xea.ElementName = "components";
XmlAttributes xas = new XmlAttributes();
xas.XmlElements.Add(xea);
xaos.Add(_updatedComponents.GetType(), xas);
// then the items of the array. just change the name
xea = new XmlElementAttribute(typeof(networkcomponent));
xea.ElementName = "component";
xas = new XmlAttributes();
xas.XmlElements.Add(xea);
xaos.Add(typeof(NetworkComponent), "NetworkComponent", xas);
XmlSerializer serializer = new XmlSerializer(_updatedComponents.GetType(), xaos);
XmlTextWriter writer = new XmlTextWriter(string.Format("{0}\\ComponentSyncWS_{1}.xml",
Preferences.FileSyncDirectory, requestId), Encoding.UTF8);
serializer.Serialize(writer, _updatedComponents);
Sınıf oluşturulduğundan bu yana System.Xml.Serialization.XmlTypeAttribute tanımlarını değiştirmek istemediğimi ekleyebilirim ve böylece –