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

  • Home
  • SEARCH
  • 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 8837819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:49:33+00:00 2026-06-14T09:49:33+00:00

I am using some existing code that is defined as follows. class Example {

  • 0

I am using some existing code that is defined as follows.

class Example
{
    public float x_field;
    public float x_property
    {
        get { return x_field; }
        set { x_field = value; }
    }
}

Why its defined like this I don’t know, but I’m unable to change its implementation. The problem, is that when I serialize it, I obviously get both values in the xml output. How can I stop this from occurring if I can’t modify the ‘Example’ class?

I want the Serializer to only output public properties and not public fields.

  • 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-06-14T09:49:34+00:00Added an answer on June 14, 2026 at 9:49 am

    You could use the XmlAttributeOverride parameter of XmlSerializer e.g.

    XmlAttributeOverrides overrides = new XmlAttributeOverrides();
    XmlAttributes attributes = new XmlAttributes();
    attributes.XmlIgnore = true;
    overrides.Add(typeof(Example), "x_field", attributes);
    
    XmlSerializer xs = new XmlSerializer(typeof(Example), overrides);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using some legacy code to return an Excel worksheet as a Dataset.
I'm using some CSS properties that does not support in CSS 2.1. For example,
I use some strongly-typed expressions that get serialized to allow my UI code to
I have some existing code that uses an enum instead of a function pointer
I have some existing C code that uses ICMP raw sockets to do Ping
I have some existing code in C# that I'm trying to move to an
I am attempting add some tests to an existing QT GUI application using QTest.
I remember using some attribute on the getter/setter that would limit the input to
First some brief background: I have an existing ASP.NET MVC 1 application using Entity
I'm fairly new to groovy, looking at some existing code, and I see this:

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.