Exemple #1
0
 public static extern CURLSH curl_share_setopt_ptr(IntPtr sharePtr, CURLSHOPT option, Delegates.UnlockFunction arg);
Exemple #2
0
 public static extern CURLSH curl_share_setopt_str(IntPtr sharePtr, CURLSHOPT option, string arg);
Exemple #3
0
 public static extern CURLSH curl_share_setopt_ptr(IntPtr sharePtr, CURLSHOPT option, byte[] arg);
Exemple #4
0
 public static extern CURLSH curl_share_setopt_int(IntPtr sharePtr, CURLSHOPT option, bool arg);
Exemple #5
0
 public CURLSH SetOpt(CURLSHOPT options, Delegates.UnlockFunction value)
 {
     return(Lib.curl_share_setopt_ptr(sharePtr, options, value));
 }
Exemple #6
0
 public CURLSH SetOpt(CURLSHOPT options, byte[] value)
 {
     return(Lib.curl_share_setopt_ptr(sharePtr, options, value));
 }
Exemple #7
0
 public CURLSH SetOpt(CURLSHOPT options, string value)
 {
     return(Lib.curl_share_setopt_str(sharePtr, options, value));
 }
Exemple #8
0
 public CURLSH SetOpt(CURLSHOPT options, bool value)
 {
     return(Lib.curl_share_setopt_int(sharePtr, options, value));
 }