DiscoveryClientOutputChannel.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 / NetFx40 / System.ServiceModel.Discovery / System / ServiceModel / Discovery / DiscoveryClientOutputChannel.cs / 1305376 / DiscoveryClientOutputChannel.cs

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

namespace System.ServiceModel.Discovery 
{
    using System; 
    using System.ServiceModel; 
    using System.ServiceModel.Channels;
 
    class DiscoveryClientOutputChannel : DiscoveryClientChannelBase, IOutputChannel
        where TChannel : class, IOutputChannel
    {
        public DiscoveryClientOutputChannel( 
            ChannelManagerBase channelManagerBase,
            IChannelFactory innerChannelFactory, 
            FindCriteria findCriteria, 
            DiscoveryEndpointProvider discoveryEndpointProvider)
            : base(channelManagerBase, innerChannelFactory, findCriteria, discoveryEndpointProvider) 
        {
        }

        public EndpointAddress RemoteAddress 
        {
            get 
            { 
                if (this.InnerChannel == null)
                { 
                    return DiscoveryClientBindingElement.DiscoveryEndpointAddress;
                }

                return this.InnerChannel.RemoteAddress; 
            }
        } 
 
        public Uri Via
        { 
            get
            {
                if (this.InnerChannel == null)
                { 
                    return DiscoveryClientBindingElement.DiscoveryEndpointAddress.Uri;
                } 
 
                return this.InnerChannel.Via;
            } 
        }

        public virtual IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
        { 
            return this.InnerChannel.BeginSend(message, timeout, callback, state);
        } 
 
        public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state)
        { 
            return this.BeginSend(message, this.DefaultSendTimeout, callback, state);
        }

        public void EndSend(IAsyncResult result) 
        {
            this.InnerChannel.EndSend(result); 
        } 

        public virtual void Send(Message message, TimeSpan timeout) 
        {
            this.InnerChannel.Send(message, timeout);
        }
 
        public void Send(Message message)
        { 
            this.Send(message, this.DefaultSendTimeout); 
        }
    } 
}

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