curl_slist_free_all() private method

private curl_slist_free_all ( IntPtr pList ) : CURLSHcode
pList IntPtr
return CURLSHcode
Example #1
0
 public void Dispose()
 {
     if (_handle != IntPtr.Zero)
     {
         Curl.curl_slist_free_all(_handle);
         _handle = IntPtr.Zero;
     }
 }