Sample code for 30+ languages & platforms
Xojo Plugin Requires Chilkat v11.0.0+

Transition from Http.LastJsonData to Http.GetLastJsonData

See more HTTP Examples

Provides instructions for replacing deprecated LastJsonData method calls with GetLastJsonData.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim http As New Chilkat.Http

//  ...
//  ...

//  ------------------------------------------------------------------------
//  The LastJsonData method is deprecated:

Dim json1 As Chilkat.JsonObject
json1 = http.LastJsonData()
System.DebugLog(json1.Emit())

//  ------------------------------------------------------------------------
//  Do the equivalent using GetLastJsonData.

Dim json2 As New Chilkat.JsonObject
http.GetLastJsonData json2
System.DebugLog(json2.Emit())