HTTPSecureSocket Header(HeaderName) ?

I am actually searching a specific header with a secure connection and failed.

What I found is:

socket1.SetRequestHeader("Content-Type","text/xml")

But I do not want to set a Header, but:

Mime = Socket1.GetRequestHeader("Content-Type")

and have text/xml stored into Mime.

Yes, HTTPSecureSocket.GetHeaders(URL As String) As String exists, and I used it.

HTTPSocket have such facility.

Must I use the String commands to get the Headers I want ? Or did I overlooked the needed stuff ?

Not completely awaken. The answer is:

My_Headers.Value("Content-Type") 

I was not searching at the right location.