winhttpsendrequest (winhttp)
Last changed: -67.32.36.230

.
Summary
TODO - a short description

C# Signature:

[DllImport("winhttp.dll", SetLastError=true)]
static extern bool WinHttpSendRequest(
            IntPtr hRequest,
            string pwszHeaders,
            int dwHeadersLength,
            IntPtr lpOptional, //referred to as a buffer...maybe should be a stringbuilder or string?
            uint dwOptionalLength,
            uint dwTotalLength,
            int dwContext
            );

VB Signature:

Declare Function WinHttpSendRequest Lib "winhttp.dll" (ByVal hRequest As IntPtr, ByVal pwszHeaders As String, ByVal dwHeadersLength As Integer, ByVal lpOptional As Byte(), ByVal dwOptionalLength As Integer, ByVal dwTotalLength As Integer, ByVal dwContext As IntPtr) As Boolean

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation