[DllImport("wininet.dll", CharSet=CharSet.Auto, SetLastError=true)]
static extern bool InternetGetCookie(string lpszUrlName, string lpszCookieName,
[Out] string lpszCookieData, [MarshalAs(UnmanagedType.U4)] out int lpdwSize);
Declare Auto Function InternetGetCookie Lib "wininet.dll" ( _
ByVal lpszUrlName As String, ByVal lpszCookieName As String, _
ByVal lpszCookieData As String, ByRef lpdwSize As Integer) As Boolean
None.
You can pass null (Nothing in Visual Basic) to the lpszCookieData parameter to get the require buffer size from the lpdwSize parameter.
Please add some!
Please add some!
Do you know one? Please contribute it!