Пример #1
0
 /// <summary>Constructor: make a new connection of a given size
 /// </summary>
 internal Connection(int size)
 {
     _buffer = new PacketBuffer(size);
 }
Пример #2
0
        private Network _traceNetwork; // the network this port is visible in (needed for tracing)

        #endregion Fields

        #region Constructors

        /// <summary>Constructor: make a new connection of a given size
        /// </summary>
        internal Connection(int size)
        {
            _buffer = new PacketBuffer(size);
        }