Hi to All
I'm using the very very helpful VB.net sample code (that was converted from C# from a forum user). Usually the code runs fine but i get an exception on listMarketBook call sometimes.
The error is: Requested value 'HIDDEN' was not found.
The exception occurs on the following function:
I don't understand if the field "HIDDEN" is present on the JSON response and not on my class or the other way. Can anyone understand? Thanks
I'm using the very very helpful VB.net sample code (that was converted from C# from a forum user). Usually the code runs fine but i get an exception on listMarketBook call sometimes.
The error is: Requested value 'HIDDEN' was not found.
The exception occurs on the following function:
Code:
Public Shared Function Deserialize(Of T)(ByVal json As String) As T
Return Newtonsoft.Json.JsonConvert.DeserializeObject(Of T)(json)
End Function


Comment