Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6744795
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:07:35+00:00 2026-05-26T12:07:35+00:00

My class definition: [Serializable] public class MyClass { [XmlAttribute(AttributeName = ID)] //Problem is here.

  • 0

My class definition:

[Serializable]
public class MyClass
{
    [XmlAttribute(AttributeName = "ID")] //Problem is here. same attr name ID.
    public int XXX_ID { get; set; }

    [XmlElement(ElementName = "XXX")]
    public string XXX_Value{ get; set; }

    [XmlAttribute(AttributeName = "ID")] //Problem is here. same attr name ID.
    public int YYY_ID { get; set; }

    [XmlElement(ElementName = "YYY")]
    public string YYY_Value { get; set; }
}

My XML:

<MyClass>
    <XXX ID="123">Some Values</XXX> 
    <YYY ID="567">Some Values</YYY>
</MyClass>

My Problem:

I want to de-serialize the above XML into an object.

During the runtime, an error has occurred, it is not allowed to have same attribute name in 2 different elements and under the same root.

How to solve this problem?

P/S: I cannot change the XML, I am not the owner of it.

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T12:07:36+00:00Added an answer on May 26, 2026 at 12:07 pm

    To do that you either need to do the (de)serialization manually, or you need to DTO to have roughly the same layout as the xml. For example:

    public class Something { // need a name here to represent what this is!
        [XmlAttribute] public int ID {get;set;}
        [XmlText] public string Value {get;set;}
    }
    

    then

    public class MyClass {
        public Something XXX {get;set;}
        public Something YYY {get;set;}
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is my class definition: class MyClass { public: void test(int val = 0);
Here's my class definition: class A { public: void do_lengthy_work() { cout << working.
I have the following VB.NET class definition: <Serializable()> Partial Public Class Customers End Class
given the following class definition: public class Order { public IProduct Product {get;set;} }
I have a generic class definition similar to this: public sealed class MyClass<TProperty,TOwner> {
Say I have a class definition: class CustomClass { int member; }; Why is
given this class definition: public class Frame { IFrameStream CapturedFrom; } I want implement
Given a simple C# class definition like: [System.Windows.Markup.ContentProperty(PropertyOne)] public class SimpleBase { public string
My program has the following class definition: public sealed class Subscriber { private subscription;
Consider I have a Singleton class defined as follows. public class MySingleton implements Serializable{

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.