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 a class that gets sent out to the client via a JSON web service, where is gets modified and then sent back and consumed by another method on that web service.

The issue I'm having is that when passing the object back it will fail with a serialization error if the class has any nullable datetime properties.

For example (not actual, but close):

Public Class MyClass
    Public Property MyVal As String ' This works'
    Public Property MyDate As Nullable(Of DateTime) ' This fails'
End Class

Public Class Response
    Public Property Value as Object
    Public Property Code as Integer
End Class

' The request looks something like this: {"obj":{MyVal:"Test", MyDate:{}}} '
<WebMethod(), XmlInclude(GetType(MyClass))> _
<ScriptMethod(ResponseFormat:=ResponseFormat.Json)> _
Public Function SetMyClass(ByVal obj As MyClass) As Response
        Dim response As New Response()
        response.Value = Update(obj)

        Return response
End Function
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.