Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CommandReaderBase&lt;TCommandInfo&gt;"/> class.
 /// </summary>
 /// <param name="previousCommandReader">The previous command reader.</param>
 public CommandReaderBase(CommandReaderBase <TCommandInfo> previousCommandReader)
 {
     AppServer        = previousCommandReader.AppServer;
     m_BufferSegments = previousCommandReader.BufferSegments;
 }
Exemplo n.º 2
0
 public TerminatorCommandReader(CommandReaderBase <StringCommandInfo> previousCommandReader)
     : base(previousCommandReader)
 {
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes the instance with the specified previous command reader.
 /// </summary>
 /// <param name="previousCommandReader">The previous command reader.</param>
 protected void Initialize(CommandReaderBase <TCommandInfo> previousCommandReader)
 {
     AppServer        = previousCommandReader.AppServer;
     m_BufferSegments = previousCommandReader.BufferSegments;
 }