disinclude from xml serialization

  • Thread starter Thread starter John Grandy
  • Start date Start date
J

John Grandy

How to mark a public member of a class so that it is not included in an xml
serialization or deserialization ? Thanks.
 
How to mark a public member of a class so that it is not included in an xml
serialization or deserialization ? Thanks.

Mark the property with the attribute XmlIgnore as below:

[XmlIgnore()]
public string NotNecessaryString {get; set;}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top