TcpChannelFactory.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / TcpChannelFactory.cs / 1 / TcpChannelFactory.cs

                            //------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------
// Enable this to dump contents of a connection a file.
//#define CONNECTIONDUMP 

namespace System.ServiceModel.Channels 
{ 
    using System.Collections.Generic;
    using System.Diagnostics; 
    using System.IO;
    using System.Text;
    using System.Threading;
    using System.Runtime.Serialization; 
    using System.ServiceModel.Diagnostics;
 
    class TcpChannelFactory : ConnectionOrientedTransportChannelFactory, 
        ITcpChannelFactorySettings
    { 
        static TcpConnectionPoolRegistry connectionPoolRegistry = new TcpConnectionPoolRegistry();
        TimeSpan leaseTimeout;

        public TcpChannelFactory(TcpTransportBindingElement bindingElement, BindingContext context) 
            : base(bindingElement, context,
            bindingElement.ConnectionPoolSettings.GroupName, 
            bindingElement.ConnectionPoolSettings.IdleTimeout, 
            bindingElement.ConnectionPoolSettings.MaxOutboundConnectionsPerEndpoint)
        { 
            this.leaseTimeout = bindingElement.ConnectionPoolSettings.LeaseTimeout;
        }

        public TimeSpan LeaseTimeout 
        {
            get 
            { 
                return leaseTimeout;
            } 
        }

        public override string Scheme
        { 
            get { return Uri.UriSchemeNetTcp; }
        } 
 
        internal override IConnectionInitiator GetConnectionInitiator()
        { 
            IConnectionInitiator socketConnectionInitiator = new SocketConnectionInitiator(
                ConnectionBufferSize);
#if CONNECTIONDUMP
            socketConnectionInitiator = new ConnectionDumpInitiator(socketConnectionInitiator); 
#endif
            return new BufferedConnectionInitiator(socketConnectionInitiator, 
                MaxOutputDelay, ConnectionBufferSize); 
        }
 
        internal override ConnectionPool GetConnectionPool()
        {
            return connectionPoolRegistry.Lookup(this);
        } 

        internal override void ReleaseConnectionPool(ConnectionPool pool, TimeSpan timeout) 
        { 
            connectionPoolRegistry.Release(pool, timeout);
        } 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK