Exemplo n.º 1
0
 public static extern CURLE curl_easy_setopt_ptr(IntPtr easyPtr, CURLOPT option, Delegates.ProgressFunction arg);
Exemplo n.º 2
0
 public static extern CURLE curl_easy_setopt_str(IntPtr easyPtr, CURLOPT option, string arg);
Exemplo n.º 3
0
 public static extern CURLE curl_easy_setopt_ptr(IntPtr easyPtr, CURLOPT option, byte[] arg);
Exemplo n.º 4
0
 public static extern CURLE curl_easy_setopt_int(IntPtr easyPtr, CURLOPT option, bool arg);
Exemplo n.º 5
0
 public CURLE SetOpt(CURLOPT options, Delegates.ProgressFunction value)
 {
     return(Lib.curl_easy_setopt_ptr(easyPtr, options, value));
 }
Exemplo n.º 6
0
 public CURLE SetOpt(CURLOPT options, byte[] value)
 {
     return(Lib.curl_easy_setopt_ptr(easyPtr, options, value));
 }
Exemplo n.º 7
0
 public CURLE SetOpt(CURLOPT options, string value)
 {
     return(Lib.curl_easy_setopt_str(easyPtr, options, value));
 }
Exemplo n.º 8
0
 public CURLE SetOpt(CURLOPT options, bool value)
 {
     return(Lib.curl_easy_setopt_int(easyPtr, options, value));
 }