Esempio n. 1
0
 internal static extern IntPtr curl_version_info(CurlVersion ver);
Esempio n. 2
0
 public static extern IntPtr curl_version_info(CurlVersion ver);
Esempio n. 3
0
 internal CurlVersionInfoData(CurlVersion ver)
 {
     m_pVersionInfoData = NativeMethods.curl_version_info(ver);
 }
Esempio n. 4
0
 internal static extern IntPtr curl_version_info(CurlVersion ver);
Esempio n. 5
0
 /// <summary>
 ///     Get a <see cref="CurlVersionInfoData" /> object.
 /// </summary>
 /// <param name="ver">
 ///     Specify a <see cref="CurlVersion" />, such as
 ///     <c>CurlVersion.Now</c>.
 /// </param>
 /// <returns>A <see cref="CurlVersionInfoData" /> object.</returns>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if cURL isn't properly initialized.
 /// </exception>
 public static CurlVersionInfoData GetVersionInfo(CurlVersion ver)
 {
     EnsureCurl();
     return(new CurlVersionInfoData(ver));
 }
Esempio n. 6
0
 /// <summary>
 ///     Get a <see cref="CurlVersionInfoData" /> object.
 /// </summary>
 /// <param name="ver">
 ///     Specify a <see cref="CurlVersion" />, such as
 ///     <c>CurlVersion.Now</c>.
 /// </param>
 /// <returns>A <see cref="CurlVersionInfoData" /> object.</returns>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if cURL isn't properly initialized.
 /// </exception>
 public static CurlVersionInfoData GetVersionInfo(CurlVersion ver)
 {
     EnsureCurl();
     return new CurlVersionInfoData(ver);
 }
Esempio n. 7
0
 internal CurlVersionInfoData(CurlVersion ver)
 {
     m_pVersionInfoData = NativeMethods.curl_version_info(ver);
 }