HostedTcpTransportManager.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

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

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

namespace System.ServiceModel.Activation 
{
    using System.ServiceModel.Channels; 
    using System.Collections.Generic; 
    using System.Diagnostics;
 
    class HostedTcpTransportManager : SharedTcpTransportManager
    {
        bool settingsApplied;
        Action onViaCallback; 

        public HostedTcpTransportManager(BaseUriWithWildcard baseAddress) 
            : base(baseAddress.BaseAddress) 
        {
            this.HostNameComparisonMode = baseAddress.HostNameComparisonMode; 
            this.onViaCallback = new Action(OnVia);
        }

        internal void Start(int queueId, Guid token, Action messageReceivedCallback) 
        {
            SetMessageReceivedCallback(messageReceivedCallback); 
            OnOpenInternal(queueId, token); 
        }
 
        internal override void OnOpen()
        {
            // This is intentionally empty.
        } 

        internal override void OnClose(TimeSpan timeout) 
        { 
            // This is intentionally empty.
        } 

        internal override void OnAbort()
        {
            // This is intentionally empty. 
        }
 
        internal void Stop(TimeSpan timeout) 
        {
            CleanUp(false, timeout); 
            settingsApplied = false;
        }

        protected override Action GetOnViaCallback() 
        {
            return this.onViaCallback; 
        } 

        void OnVia(Uri address) 
        {
            Debug.Print("HostedTcpTransportManager.OnVia() address: " + address + " calling EnsureServiceAvailable()");
            ServiceHostingEnvironment.EnsureServiceAvailable(address.LocalPath);
        } 

        protected override void OnSelecting(TcpChannelListener channelListener) 
        { 
            if (settingsApplied)
            { 
                return;
            }

            lock (ThisLock) 
            {
                if (settingsApplied) 
                { 
                    // Use the first one.
                    return; 
                }

                this.ApplyListenerSettings(channelListener);
                settingsApplied = true; 
            }
        } 
    } 
}

// 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