TcpHostedTransportConfiguration.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WCF / System.ServiceModel.Activation / System / ServiceModel / Activation / TcpHostedTransportConfiguration.cs / 1305376 / TcpHostedTransportConfiguration.cs

                            //---------------------------------------------------------------------------- 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//---------------------------------------------------------------------------

 
namespace System.ServiceModel.Activation
{ 
    using System.Collections.Generic; 
    using System.ServiceModel;
    using System.ServiceModel.Channels; 
    using System.Diagnostics;
    using System.Web.Hosting;

    sealed class TcpHostedTransportConfiguration : HostedTransportConfigurationBase 
    {
        HostedTcpTransportManager uniqueManager; 
 
        public TcpHostedTransportConfiguration()
            : base(Uri.UriSchemeNetTcp) 
        {
            string[] bindings = HostedTransportConfigurationManager.MetabaseSettings.GetBindings(Uri.UriSchemeNetTcp);
            for (int i = 0; i < bindings.Length; i++)
            { 
                BaseUriWithWildcard listenAddress = BaseUriWithWildcard.CreateHostedUri(Uri.UriSchemeNetTcp, bindings[i], HostingEnvironmentWrapper.ApplicationVirtualPath);
                if (i == 0) 
                { 
                    Debug.Print("TcpHostedTransportConfiguration.ctor() Creating the unique TcpTransportManager with ListenUri:" + listenAddress.BaseAddress);
                    uniqueManager = new HostedTcpTransportManager(listenAddress); 
                }

                this.ListenAddresses.Add(listenAddress);
                Debug.Print("Registering the unique TcpTransportManager with ListenUri:" + listenAddress.BaseAddress); 
                TcpChannelListener.StaticTransportManagerTable.RegisterUri(listenAddress.BaseAddress, listenAddress.HostNameComparisonMode, uniqueManager);
            } 
        } 

        internal TcpTransportManager TransportManager { get { return uniqueManager; } } 
    }
}

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

 
namespace System.ServiceModel.Activation
{ 
    using System.Collections.Generic; 
    using System.ServiceModel;
    using System.ServiceModel.Channels; 
    using System.Diagnostics;
    using System.Web.Hosting;

    sealed class TcpHostedTransportConfiguration : HostedTransportConfigurationBase 
    {
        HostedTcpTransportManager uniqueManager; 
 
        public TcpHostedTransportConfiguration()
            : base(Uri.UriSchemeNetTcp) 
        {
            string[] bindings = HostedTransportConfigurationManager.MetabaseSettings.GetBindings(Uri.UriSchemeNetTcp);
            for (int i = 0; i < bindings.Length; i++)
            { 
                BaseUriWithWildcard listenAddress = BaseUriWithWildcard.CreateHostedUri(Uri.UriSchemeNetTcp, bindings[i], HostingEnvironmentWrapper.ApplicationVirtualPath);
                if (i == 0) 
                { 
                    Debug.Print("TcpHostedTransportConfiguration.ctor() Creating the unique TcpTransportManager with ListenUri:" + listenAddress.BaseAddress);
                    uniqueManager = new HostedTcpTransportManager(listenAddress); 
                }

                this.ListenAddresses.Add(listenAddress);
                Debug.Print("Registering the unique TcpTransportManager with ListenUri:" + listenAddress.BaseAddress); 
                TcpChannelListener.StaticTransportManagerTable.RegisterUri(listenAddress.BaseAddress, listenAddress.HostNameComparisonMode, uniqueManager);
            } 
        } 

        internal TcpTransportManager TransportManager { get { return uniqueManager; } } 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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