SeasideResearch.LibCurlNet.Easy.Reset C# (CSharp) Method

Reset() public method

Reset the internal cURL handle.
This is thrown if /// the native CURL* handle wasn't created successfully.
public Reset ( ) : void
return void
        public void Reset()
        {
            EnsureHandle();
            External.curl_easy_reset(m_pCURL);
        }