An implementation of ITransport that uses sockets to communicate with the broker
Inheritance: ITransport
Example #1
0
        /// <summary>
        /// Override in a subclass to create the specific type of transport that is
        /// being implemented.
        /// </summary>
        protected virtual ITransport DoCreateTransport(Uri location, Socket socket, IWireFormat wireFormat)
        {
            TcpTransport transport = new TcpTransport(location, socket, wireFormat);

            return(transport);
        }