LibCurl.Curl.curl_slist_free_all C# (CSharp) Method

curl_slist_free_all() private method

private curl_slist_free_all ( IntPtr pList ) : CURLSHcode
pList IntPtr
return CURLSHcode
        internal static extern CURLSHcode curl_slist_free_all(IntPtr pList);

Usage Example

コード例 #1
0
 public void Dispose()
 {
     if (_handle != IntPtr.Zero)
     {
         Curl.curl_slist_free_all(_handle);
         _handle = IntPtr.Zero;
     }
 }