Results 1 to 27 of 27

Thread: [RESOLVED] WinHTTP 5.1 class wrapper

Threaded View

  1. #12

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 2011
    Posts
    461

    Re: clsHttpRequests

    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:
    1. Public Property Get GetResponseHeaders() As String
    2. GetResponseHeaders = http.GetAllResponseHeaders
    3. End Property
    4.  
    5. Public Property Get GetResponseHeader(Header As String) As String
    6. On Error Resume Next
    7. GetResponseHeader = http.GetResponseHeader(Header)
    8. End Property
    How to see response code?
    Last edited by MikiSoft; Feb 15th, 2015 at 03:17 PM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width