473,659 Members | 3,553 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to specify root when serializing collection

How can I change the name of the root element from ArrayOfPassword Entry to
PasswordList or whatever?
I have tried [XmlRoot("Passwo rdList")] before the public class
PasswordEntries definition, but XmlSerializer won't accept.

Please help!

Here's the output:
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfPasswor dEntry xmlns:xsd="http ://www.w3.org/2001/XMLSchema"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance">
<PasswordEntr y>
<Name>EntryName </Name>
<Account>Accoun tName</Account>
<Password>passw ord</Password>
</PasswordEntry>
</ArrayOfPassword Entry>
Here the code:

using System;

namespace TrayPasswords
{
[Serializable]
public class PasswordEntries : System.Collecti ons.CollectionB ase
{
public PasswordEntries ()
{
}

public PasswordEntry Add(PasswordEnt ry value)
{
this.InnerList. Add(value);

return value;
}

public void Remove(int index)
{
PasswordEntry entry = (PasswordEntry) this.InnerList[index];
if (entry != null)
this.InnerList. Remove(entry);
}

/// <summary>An indexer is needed for Serialization of Collection
classes</summary>
[System.Runtime. CompilerService s.IndexerName(" Item")]
public PasswordEntry this[int index]
{
get { return (PasswordEntry) this.InnerList[index]; }
}

/// <summary>An indexer is needed for Serialization of Collection
classes</summary>
[System.Runtime. CompilerService s.IndexerName(" Item")]
public PasswordEntry this[string name]
{
get
{
foreach (PasswordEntry entry in this.InnerList)
{
if (entry.Name == name)
return entry;
}
return null;
}
}
}
}
Here's the output:
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfPasswor dEntry xmlns:xsd="http ://www.w3.org/2001/XMLSchema"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance">
<PasswordEntr y>
<Name>EntryName </Name>
<Account>Accoun tName</Account>
<Password>passw ord</Password>
</PasswordEntry>
</ArrayOfPassword Entry>
Nov 11 '05 #1
1 1953
This works for me--

Dim xmlRoot As New XmlRootAttribut e("PasswordList ")
mySerializer = New XmlSerializer(G etType(Password Entries), xmlRoot)

Hope that's helpful.

Jon

"Chris Becker" <sl*****@hotmai l.com> wrote in message
news:OS******** ******@TK2MSFTN GP09.phx.gbl...
How can I change the name of the root element from ArrayOfPassword Entry to
PasswordList or whatever?
I have tried [XmlRoot("Passwo rdList")] before the public class
PasswordEntries definition, but XmlSerializer won't accept.

Please help!

Here's the output:
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfPasswor dEntry xmlns:xsd="http ://www.w3.org/2001/XMLSchema"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance">
<PasswordEntr y>
<Name>EntryName </Name>
<Account>Accoun tName</Account>
<Password>passw ord</Password>
</PasswordEntry>
</ArrayOfPassword Entry>
Here the code:

using System;

namespace TrayPasswords
{
[Serializable]
public class PasswordEntries : System.Collecti ons.CollectionB ase
{
public PasswordEntries ()
{
}

public PasswordEntry Add(PasswordEnt ry value)
{
this.InnerList. Add(value);

return value;
}

public void Remove(int index)
{
PasswordEntry entry = (PasswordEntry) this.InnerList[index];
if (entry != null)
this.InnerList. Remove(entry);
}

/// <summary>An indexer is needed for Serialization of Collection
classes</summary>
[System.Runtime. CompilerService s.IndexerName(" Item")]
public PasswordEntry this[int index]
{
get { return (PasswordEntry) this.InnerList[index]; }
}

/// <summary>An indexer is needed for Serialization of Collection
classes</summary>
[System.Runtime. CompilerService s.IndexerName(" Item")]
public PasswordEntry this[string name]
{
get
{
foreach (PasswordEntry entry in this.InnerList)
{
if (entry.Name == name)
return entry;
}
return null;
}
}
}
}
Here's the output:
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfPasswor dEntry xmlns:xsd="http ://www.w3.org/2001/XMLSchema"
xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance">
<PasswordEntr y>
<Name>EntryName </Name>
<Account>Accoun tName</Account>
<Password>passw ord</Password>
</PasswordEntry>
</ArrayOfPassword Entry>

Nov 11 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1525
by: siddharthkhare | last post by:
HiAll, i am having hard time serializing a object in a specific xml.I need to feed it to a biztalk port. i Have a root object(c# class) 'CTSCServiceOrder'. When i serilize it using a xml serializer following is the out put. <?xml version="1.0"?>
16
9519
by: Bob Rock | last post by:
Hello, when serializing an array of elements of a class Classname using XmlSerializer.Serialize() I get an XML like the following: <?xml version="1.0"> <ArrayOfClassname> ....... ....... </ArrayOfClassname>
1
1683
by: dotNetDave | last post by:
I'm trying to create xml seriaizable collection class (below), but the xml keeps coming out wrong. In the resulting xml from the web service (below) the "ArrayOfAlarmProcessor" tag should really be "Processors" and the "AlarmProcessor" tag should be "Processor". <ArrayOfAlarmProcessor xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mycompany/webservice/NetworkAlarms">...
1
2882
by: Carl Gilbert | last post by:
Hi I am trying to serialize a collection of GUIDs by overriding the serialize function on a diagram component I am using. The following code sucessfully serializes a single GUID: Public Overloads Overrides Function Serialize(ByVal Key As Object) As String Dim objXML As New XmlDocument Dim objParent As XmlElement
2
3291
by: Aleksei Guzev | last post by:
Imagine one writing a class library CL1 for data storage. He defines classes ‘DataItem’ and ‘DataRecord’ so that the latter contains a collection of the former. And he derives class ‘IntItem’ from ‘DataItem’ public class DataItem { public DataItem() {}
2
1728
by: Q. John Chen | last post by:
I posted this in C# group and just found this spot. I created a class that implements ICollection. After serializing got following result: <?xml version=\"1.0\" encoding=\"utf-16\"> <ArrayOfCustomer> <Customer> <FirstName>John</FirstName>
3
11750
by: RandomEngineer | last post by:
So here's the challenge... How can a collection (System.Collections.Generic.IList) of some custom type be serialized in a web service using .NET 2.0? Below are the class and the web methods in question. The interesting thing is that at each step of the way, DAL & Biz, the someType class is decorated with the Serializable attribute. And the someTypes collection in the web method is correctly populated with the data after the call to...
0
1060
by: Keith Patrick | last post by:
Could someone explain to me the ramifications of declaring XmlRoot("namespace") on a series of classes in which one or more are aggregates within another? I have a bunch of classes with a single namespace declared as XmlRoots, but the serialized XML that is outputted puts those namespace decls on different elements depending on whether or not the root element is one of the classes or an array of that class. Basically, if it's an array,...
1
1245
by: Karthik1979 | last post by:
I have a custom class inherited from List<T> collection. Along with the base class functionality, I have included my additional properties. When serializing, only the base class items are serialized not my additional properties. I have designed a business object collection like this and I have to pass it across the service layer. But in another end I’m getting partial data not all my information is getting de-serialized. Here is a sample...
0
8337
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8851
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8628
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6181
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5650
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4175
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4335
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2754
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1739
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.