/// <summary>
 /// Initializes a new instance of the ConnectionTelnetStateSubRequestIAC class.
 /// </summary>
 /// <param name="parent">The parent telnet code handler which this object is created by.</param>
 public ConnectionTelnetStateSubRequestIAC(TelnetCodeHandler parent)
     : base(parent)
 {
 }
Ejemplo n.º 2
0
 /// <summary>Initializes a new instance of the ConnectionTelnetStateSubRequestIAC class.</summary>
 /// <param name="parent">The parent telnet code handler which this object is created by.</param>
 public ConnectionTelnetStateSubRequestIAC(TelnetCodeHandler parent)
     : base(parent)
 {
 }
Ejemplo n.º 3
0
 /// <summary>Initializes a new instance of the ConnectionTelnetStateOptionCode class.</summary>
 /// <param name="parent">The parent telnet code handler which this object is created by.</param>
 /// <param name="optionCode">The option code being negotiated.</param>
 public ConnectionTelnetStateOptionCode(TelnetCodeHandler parent, int optionCode)
     : base(parent)
 {
     this.optionCode = optionCode;
 }
 /// <summary>
 /// Initializes a new instance of the ConnectionTelnetStateOptionCode class.
 /// </summary>
 /// <param name="parent">The parent telnet code handler which this object is created by.</param>
 /// <param name="optionCode">The option code being negotiated.</param>
 public ConnectionTelnetStateOptionCode(TelnetCodeHandler parent, int optionCode)
     : base(parent)
 {
     this.optionCode = optionCode;
 }