csExWB.ProtocolHandlerOnResponseEventArgs.ProtocolHandlerOnResponseEventArgs C# (CSharp) Method

ProtocolHandlerOnResponseEventArgs() public method

public ProtocolHandlerOnResponseEventArgs ( string _url, string _responseheaders, string _redirectedurl, string _redirectheaders ) : System
_url string
_responseheaders string
_redirectedurl string
_redirectheaders string
return System
        public ProtocolHandlerOnResponseEventArgs(string _url, string _responseheaders, string _redirectedurl, string _redirectheaders)
        {
            m_URL = _url;
            m_ResponseHeaders = _responseheaders;
            m_RedirectHeaders = _redirectheaders;
            m_RedirectedUrl = _redirectedurl;
        }
ProtocolHandlerOnResponseEventArgs