Xojo Plugin
Xojo Plugin
Clear All Multipart Parts
See more REST Examples
Demonstrates Rest.ClearAllParts, which removes all multipart subparts from the request under construction.
Background. Clearing the parts is useful when reusing the same Rest object to build a different multipart request.
Chilkat Xojo Plugin Downloads
Dim success As Boolean
success = False
Dim rest As New Chilkat.Rest
Dim bTls As Boolean
bTls = True
Dim bAutoReconnect As Boolean
bAutoReconnect = True
success = rest.Connect("example.com",443,bTls,bAutoReconnect)
If (success = False) Then
System.DebugLog(rest.LastErrorText)
Return
End If
// Build a part.
rest.PartSelector = "1"
success = rest.SetMultipartBodyString("value1")
If (success = False) Then
System.DebugLog(rest.LastErrorText)
Return
End If
// Remove all multipart subparts from the request under construction, for example before reusing the
// same Rest object for a different multipart request.
success = rest.ClearAllParts()
System.DebugLog("All multipart parts cleared.")