Beispiel #1
0
 internal static extern IntPtr curl_version_info(CurlVersion ver);
Beispiel #2
0
 public static extern IntPtr curl_version_info(CurlVersion ver);
Beispiel #3
0
 internal CurlVersionInfoData(CurlVersion ver)
 {
     m_pVersionInfoData = NativeMethods.curl_version_info(ver);
 }
Beispiel #4
0
 internal static extern IntPtr curl_version_info(CurlVersion ver);
Beispiel #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));
 }
Beispiel #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);
 }
 internal CurlVersionInfoData(CurlVersion ver)
 {
     m_pVersionInfoData = NativeMethods.curl_version_info(ver);
 }