Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have created a C# class file by using a XSD-file as an input. One of my properties look like this:

 private System.DateTime timeField;

 [System.Xml.Serialization.XmlElementAttribute(DataType="time")]
 public System.DateTime Time {
     get {
         return this.timeField;
     }
     set {
         this.timeField = value;
     }
 }

When serialized, the contents of the file now looks like this:

<Time>14:04:02.1661975+02:00</Time>

Is it possible, with XmlAttributes on the property, to have it render without the milliseconds and the GMT-value like this?

<Time>14:04:02</Time>

Is this possible, or do i need to hack together some sort of xsl/xpath-replace-magic after the class has been serialized?

It is not a solution to changing the object to String, because it is used like a DateTime in the rest of the application and allows us to create an xml-representation from an object by using the XmlSerializer.Serialize() method.

The reason I need to remove the extra info from the field is that the receiving system does not conform to the w3c-standards for the time datatype.

share|improve this question

2 Answers

up vote 9 down vote accepted

You could create a string property that does the translation to/from your timeField field and put the serialization attribute on that instead the the real DateTime property that the rest of the application uses.

share|improve this answer
I had to do exactly the same today :) – leppie Sep 19 '08 at 12:53
Will this also work if we later need to deserialize the same file? – Espo Sep 19 '08 at 13:01
Espo: yes it will, see code in my answer :) – Matt Howells Sep 19 '08 at 13:12
That is how i solved it. Which I could accept both answers, but Jeffrey was first. The best I can do is an upvote :) – Espo Sep 19 '08 at 13:19

Put [XmlIgnore] on the Time property.

Then add a new property:

[XmlElement(DataType="string",ElementName="Time")]
public String TimeString
{
    get { return this.timeField.ToString("yyyy-MM-dd"); }
    set { this.timeField = DateTime.ParseExact(value, "yyyy-MM-dd", CultureInfo.InvariantCulture); }
}
share|improve this answer
Does this work when the property is private ? I thought xml serialization required public properties ? – Frederik Gheysels Sep 22 '09 at 10:27
Yes, Frederik is right. This won't work with a private method. If you make that method public it will serialize properly. – Ryan Feb 12 '10 at 1:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.