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 6769679
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:13:19+00:00 2026-05-26T15:13:19+00:00

I only want only to de-serializing a certain data member, without serializing it. I

  • 0

I only want only to de-serializing a certain data member, without serializing it.

I understand I can set EmitDefaultValue =false, and set the value to null.

But I also do not want to change the value of the datamember, is there any other way of achieving this?

The serializer is DataContractSerializer. 🙂

Thanks.

  • 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-26T15:13:20+00:00Added an answer on May 26, 2026 at 3:13 pm

    You can change the value of the data member before the serialization (to the default value, so it doesn’t get serialized), but then after the serialization you’d change it back – using the [OnSerializing] and [OnSerialized] callbacks (more information in this blog post). This works fine as long as you don’t have multiple threads serializing the object at the same time.

    public class StackOverflow_8010677
    {
        [DataContract(Name = "Person", Namespace = "")]
        public class Person
        {
            [DataMember]
            public string Name;
            [DataMember(EmitDefaultValue = false)]
            public int Age;
    
            private int ageSaved;
            [OnSerializing]
            void OnSerializing(StreamingContext context)
            {
                this.ageSaved = this.Age;
                this.Age = default(int); // will not be serialized
            }
            [OnSerialized]
            void OnSerialized(StreamingContext context)
            {
                this.Age = this.ageSaved;
            }
    
            public override string ToString()
            {
                return string.Format("Person[Name={0},Age={1}]", this.Name, this.Age);
            }
        }
    
        public static void Test()
        {
            Person p1 = new Person { Name = "Jane Roe", Age = 23 };
            MemoryStream ms = new MemoryStream();
            DataContractSerializer dcs = new DataContractSerializer(typeof(Person));
            Console.WriteLine("Serializing: {0}", p1);
            dcs.WriteObject(ms, p1);
            Console.WriteLine("   ==> {0}", Encoding.UTF8.GetString(ms.ToArray()));
            Console.WriteLine("   ==> After serialization: {0}", p1);
            Console.WriteLine();
            Console.WriteLine("Deserializing a XML which contains the Age member");
            const string XML = "<Person><Age>33</Age><Name>John Doe</Name></Person>";
            Person p2 = (Person)dcs.ReadObject(new MemoryStream(Encoding.UTF8.GetBytes(XML)));
            Console.WriteLine("  ==> {0}", p2);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a collection in VB.NET, but I only want it to
I want something like an std::map , but I only want to see if
I want to modify quicktime files, so I'm working with quicktime.py but it only
i only want to know that whether data is available for any specific date
I only want to get an object from a xml layout file without having
I only want to delete from one table, but I have to select based
I only want a list of files that have been added (not ones that
I only want log4net to keep let's say 10 days-worth of log files as
I only want this function to run if .toolbar li does not have the
I only want a simple Splash Screen Example. Get the Code, Insert my picture,

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.