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

Easy() public method

Constructor
This is thrown /// if hasn't bee properly initialized. This is thrown if /// the native CURL* handle wasn't created successfully.
public Easy ( ) : System
return System
        public Easy()
        {
            Curl.EnsureCurl();
            m_pCURL = External.curl_easy_init();
            EnsureHandle();
            External.curl_easy_setopt(m_pCURL, CURLoption.CURLOPT_NOPROGRESS,
                IntPtr.Zero);
            m_pMyStrings = External.curl_shim_alloc_strings();
            m_pfWrite = null;
            m_privateData = null;
            m_writeData = null;
            m_pfRead = null;
            m_readData = null;
            m_pfProgress = null;
            m_progressData = null;
            m_pfDebug = null;
            m_debugData = null;
            m_pfHeader = null;
            m_headerData = null;
            m_pfSSLContext = null;
            m_sslContextData = null;
            m_pfIoctl = null;
            m_ioctlData = null;
            InstallDelegates();
        }

Same methods

Easy::Easy ( Easy from ) : System