ANHAdmin.DataReceivedEventArgs.DataReceivedEventArgs C# (CSharp) Method

DataReceivedEventArgs() public method

Constructor
public DataReceivedEventArgs ( string typ, string text ) : System
typ string
text string The text that was received for this event to be triggered.
return System
        public DataReceivedEventArgs(string typ, string text)
        {
            Text = text;
            Type = typ;
        }
DataReceivedEventArgs