UdpTransportSettings.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 / UdpTransportSettings.cs / 1305376 / UdpTransportSettings.cs

                            //---------------------------------------------------------------- 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//---------------------------------------------------------------
namespace System.ServiceModel.Discovery
{ 
    using System.Runtime;
    using System.ServiceModel.Channels; 
    using System.Diagnostics.CodeAnalysis; 

    [Fx.Tag.XamlVisible(false)] 
    public class UdpTransportSettings
    {
        internal UdpTransportSettings(UdpTransportBindingElement udpTransportBindingElement)
        { 
            this.UdpTransportBindingElement = udpTransportBindingElement;
        } 
 
        public int DuplicateMessageHistoryLength
        { 
            get
            {
                return this.UdpTransportBindingElement.DuplicateMessageHistoryLength;
            } 
            set
            { 
                this.UdpTransportBindingElement.DuplicateMessageHistoryLength = value; 
            }
        } 

        public int MaxPendingMessageCount
        {
            get 
            {
                return this.UdpTransportBindingElement.MaxPendingMessageCount; 
            } 
            set
            { 
                this.UdpTransportBindingElement.MaxPendingMessageCount = value;
            }
        }
 
        public int MaxMulticastRetransmitCount
        { 
            get 
            {
                return this.UdpTransportBindingElement.RetransmissionSettings.MaxMulticastRetransmitCount; 
            }
            set
            {
                this.UdpTransportBindingElement.RetransmissionSettings.MaxMulticastRetransmitCount = value; 
            }
        } 
 
        [SuppressMessage(FxCop.Category.Naming, FxCop.Rule.IdentifiersShouldBeSpelledCorrectly, Justification = "Unicast is a valid name.")]
        public int MaxUnicastRetransmitCount 
        {
            get
            {
                return this.UdpTransportBindingElement.RetransmissionSettings.MaxUnicastRetransmitCount; 
            }
            set 
            { 
                this.UdpTransportBindingElement.RetransmissionSettings.MaxUnicastRetransmitCount = value;
            } 
        }

        public string MulticastInterfaceId
        { 
            get
            { 
                return this.UdpTransportBindingElement.MulticastInterfaceId; 
            }
            set 
            {
                this.UdpTransportBindingElement.MulticastInterfaceId = value;
            }
        } 

        public int SocketReceiveBufferSize 
        { 
            get
            { 
                return this.UdpTransportBindingElement.SocketReceiveBufferSize;
            }
            set
            { 
                this.UdpTransportBindingElement.SocketReceiveBufferSize = value;
            } 
        } 

        public long MaxReceivedMessageSize 
        {
            get
            {
                return this.UdpTransportBindingElement.MaxReceivedMessageSize; 
            }
            set 
            { 
                this.UdpTransportBindingElement.MaxReceivedMessageSize = value;
            } 
        }

        public long MaxBufferPoolSize
        { 
            get
            { 
                return this.UdpTransportBindingElement.MaxBufferPoolSize; 
            }
            set 
            {
                this.UdpTransportBindingElement.MaxBufferPoolSize = value;
            }
        } 

        public int TimeToLive 
        { 
            get
            { 
                return this.UdpTransportBindingElement.TimeToLive;
            }
            set
            { 
                this.UdpTransportBindingElement.TimeToLive = value;
            } 
        } 

        internal UdpTransportBindingElement UdpTransportBindingElement 
        {
            get;
            private set;
        } 
    }
} 

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