CurlSharp.NativeMethods.curl_free C# (CSharp) Method

curl_free() private method

private curl_free ( IntPtr p ) : void
p System.IntPtr
return void
		internal static extern void curl_free (IntPtr p);

Usage Example

Ejemplo n.º 1
0
        /// <summary>
        ///     URL decode a String.
        /// </summary>
        /// <param name="url">The string to URL decode.</param>
        /// <param name="length">
        ///     Input string length;
        ///     use 0 for cURL to determine.
        /// </param>
        /// <returns>A new URL decoded string.</returns>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if cURL isn't properly initialized.
        /// </exception>
        public static string Unescape(string url, int length)
        {
            EnsureCurl();
            var p = NativeMethods.curl_unescape(url, length);
            var s = Marshal.PtrToStringAnsi(p);

            NativeMethods.curl_free(p);
            return(s);
        }