/// <summary> /// Reset the internal cURL handle. /// </summary> /// <exception cref="System.NullReferenceException">This is thrown if /// the native <c>CURL*</c> handle wasn't created successfully.</exception> public void Reset() { EnsureHandle(); External.curl_easy_reset(m_pCURL); }