Sample code for 30+ languages & platforms
VB.NET

Transition from Http.LastJsonData to Http.GetLastJsonData

See more HTTP Examples

Provides instructions for replacing deprecated LastJsonData method calls with GetLastJsonData.

Chilkat VB.NET Downloads

VB.NET
Dim http As New Chilkat.Http

' ...
' ...

' ------------------------------------------------------------------------
' The LastJsonData method is deprecated:

Dim json1 As Chilkat.JsonObject = http.LastJsonData()
Debug.WriteLine(json1.Emit())


' ------------------------------------------------------------------------
' Do the equivalent using GetLastJsonData.

Dim json2 As New Chilkat.JsonObject
http.GetLastJsonData(json2)
Debug.WriteLine(json2.Emit())