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