LibCurl.Curl.curl_slist_free_all C# (CSharp) Méthode

curl_slist_free_all() private méthode

private curl_slist_free_all ( IntPtr pList ) : CURLSHcode
pList IntPtr
Résultat CURLSHcode
        internal static extern CURLSHcode curl_slist_free_all(IntPtr pList);

Usage Example

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