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

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

namespace System.ServiceModel.Configuration 
{
    using System.Configuration; 
    using System.ServiceModel; 
    using System.Globalization;
    using System.ServiceModel.Security; 
    using System.ComponentModel;
    using System.Text;
    using System.ServiceModel.Channels;
 
    public partial class WSHttpBindingElement : WSHttpBindingBaseElement
    { 
        public WSHttpBindingElement(string name) 
            : base(name)
        { 
        }

        public WSHttpBindingElement()
            : this(null) 
        {
        } 
 
        protected override Type BindingElementType
        { 
            get { return typeof(WSHttpBinding); }
        }

        [ConfigurationProperty(ConfigurationStrings.AllowCookies, DefaultValue = HttpTransportDefaults.AllowCookies)] 
        public bool AllowCookies
        { 
            get { return (bool)base[ConfigurationStrings.AllowCookies]; } 
            set { base[ConfigurationStrings.AllowCookies] = value; }
 
        }

        [ConfigurationProperty(ConfigurationStrings.Security)]
        public WSHttpSecurityElement Security 
        {
            get { return (WSHttpSecurityElement)base[ConfigurationStrings.Security]; } 
        } 

        protected internal override void InitializeFrom(Binding binding) 
        {
            base.InitializeFrom(binding);
            WSHttpBinding wspBinding = (WSHttpBinding) binding;
 
            this.AllowCookies = wspBinding.AllowCookies;
            this.Security.InitializeFrom(wspBinding.Security); 
        } 

        protected override void OnApplyConfiguration(Binding binding) 
        {
            base.OnApplyConfiguration(binding);
            WSHttpBinding wspBinding = (WSHttpBinding) binding;
 
            wspBinding.AllowCookies = this.AllowCookies;
            this.Security.ApplyConfiguration(wspBinding.Security); 
        } 
    }
 
}

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