Inheritance: DescriptorBase
Esempio n. 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="NetworkSession"/> class.
        /// </summary>
        public NetworkSession()
        {
            _isActive = false;

            _receiveDescriptor = new ReceiveDescriptor(this);
            _sendDescriptor    = new SendDescriptor(this);
        }
Esempio n. 2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="NetworkSession"/> class.
        /// </summary>
        public NetworkSession()
        {
            this.isActive = false;

            this.receiveDescriptor = new ReceiveDescriptor(this);
            this.sendDescriptor = new SendDescriptor(this);
        }