ServiceThrottlingElement.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 / Configuration / ServiceThrottlingElement.cs / 1 / ServiceThrottlingElement.cs

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

namespace System.ServiceModel.Configuration 
{
    using System.Configuration; 
    using System.ServiceModel.Dispatcher; 
    using System.ServiceModel.Description;
    using System.ServiceModel; 

    public sealed partial class ServiceThrottlingElement : BehaviorExtensionElement
    {
        public ServiceThrottlingElement() 
        {
        } 
 
        [ConfigurationProperty(ConfigurationStrings.MaxConcurrentCalls, DefaultValue = ServiceThrottle.DefaultMaxConcurrentCalls)]
        [IntegerValidator(MinValue = 1)] 
        public int MaxConcurrentCalls
        {
            get {return (int) base[ConfigurationStrings.MaxConcurrentCalls]; }
            set {base[ConfigurationStrings.MaxConcurrentCalls] = value; } 
        }
 
        [ConfigurationProperty(ConfigurationStrings.MaxConcurrentSessions, DefaultValue = ServiceThrottle.DefaultMaxConcurrentSessions)] 
        [IntegerValidator(MinValue = 1)]
        public int MaxConcurrentSessions 
        {
            get { return (int)base[ConfigurationStrings.MaxConcurrentSessions]; }
            set { base[ConfigurationStrings.MaxConcurrentSessions] = value; }
        } 

        [ConfigurationProperty(ConfigurationStrings.MaxConcurrentInstances, DefaultValue = ServiceThrottle.DefaultMaxConcurrentCalls + ServiceThrottle.DefaultMaxConcurrentSessions)] 
        [IntegerValidator(MinValue = 1)] 
        public int MaxConcurrentInstances
        { 
            get {return (int) base[ConfigurationStrings.MaxConcurrentInstances]; }
            set {base[ConfigurationStrings.MaxConcurrentInstances] = value; }
        }
 
        public override void CopyFrom(ServiceModelExtensionElement from)
        { 
            base.CopyFrom(from); 

            ServiceThrottlingElement source = (ServiceThrottlingElement) from; 
#pragma warning suppress 56506 //[....]; base.CopyFrom() checks for 'from' being null
            this.MaxConcurrentCalls = source.MaxConcurrentCalls;
            this.MaxConcurrentSessions = source.MaxConcurrentSessions;
            this.MaxConcurrentInstances = source.MaxConcurrentInstances; 
        }
 
        protected internal override object CreateBehavior() 
        {
            ServiceThrottlingBehavior behavior = new ServiceThrottlingBehavior(); 
            behavior.MaxConcurrentCalls = this.MaxConcurrentCalls;
            behavior.MaxConcurrentSessions = this.MaxConcurrentSessions;

            PropertyInformationCollection propertyInfo = this.ElementInformation.Properties; 
            if (propertyInfo[ConfigurationStrings.MaxConcurrentInstances].ValueOrigin != PropertyValueOrigin.Default)
            { 
                behavior.MaxConcurrentInstances = this.MaxConcurrentInstances; 
            }
 
            return behavior;
        }

        public override Type BehaviorType 
        {
            get { return typeof(ServiceThrottlingBehavior); } 
        } 

    } 
}


 

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