VmcController.AddIn.HttpEventArgs.HttpEventArgs C# (CSharp) Method

HttpEventArgs() public method

Initializes a new instance of the SocketEventArgs class.
public HttpEventArgs ( string message, Socket httpSocket ) : System
message string The message.
httpSocket Socket
return System
        public HttpEventArgs(string message, Socket httpSocket)
        {
            m_httpRequest = message;
            m_httpSocket = httpSocket;
        }
HttpEventArgs