Thank you very much, that's all what I need! I have a few questions now:
I see that Data and PostBody are byte type, so I need to use StrConv to parse them to/from class?
Is this addition below to the child class proper?
VB Code:
Public Property Get GetResponseHeaders() As String
GetResponseHeaders = http.GetAllResponseHeaders
End Property
Public Property Get GetResponseHeader(Header As String) As String
On Error Resume Next
GetResponseHeader = http.GetResponseHeader(Header)
End Property
How to see response code?