WSFederationHttpBindingElement.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 / WSFederationHttpBindingElement.cs / 1 / WSFederationHttpBindingElement.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 WSFederationHttpBindingElement : WSHttpBindingBaseElement
    { 
        public WSFederationHttpBindingElement(string name) 
            : base(name)
        { 
        }

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

        [ConfigurationProperty(ConfigurationStrings.PrivacyNoticeAt, DefaultValue = null)] 
        public Uri PrivacyNoticeAt
        { 
            get { return (Uri) base[ConfigurationStrings.PrivacyNoticeAt]; } 
            set { base[ConfigurationStrings.PrivacyNoticeAt] = value; }
        } 

        [ConfigurationProperty(ConfigurationStrings.PrivacyNoticeVersion, DefaultValue = 0)]
        [IntegerValidator(MinValue = 0)]
        public int PrivacyNoticeVersion 
        {
            get { return (int) base[ConfigurationStrings.PrivacyNoticeVersion]; } 
            set { base[ConfigurationStrings.PrivacyNoticeVersion] = value; } 
        }
 
        [ConfigurationProperty(ConfigurationStrings.Security)]
        public WSFederationHttpSecurityElement Security
        {
            get { return (WSFederationHttpSecurityElement)base[ConfigurationStrings.Security]; } 
        }
 
        protected internal override void InitializeFrom(Binding binding) 
        {
            base.InitializeFrom(binding); 
            WSFederationHttpBinding wspBinding = (WSFederationHttpBinding)binding;
            if ( wspBinding.PrivacyNoticeAt != null )
            {
                this.PrivacyNoticeAt = wspBinding.PrivacyNoticeAt; 
                this.PrivacyNoticeVersion = wspBinding.PrivacyNoticeVersion;
            } 
            this.Security.InitializeFrom(wspBinding.Security); 
        }
 
        protected override void OnApplyConfiguration(Binding binding)
        {
            base.OnApplyConfiguration(binding);
            WSFederationHttpBinding wspBinding = (WSFederationHttpBinding)binding; 
            if (this.PrivacyNoticeAt != null)
            { 
                wspBinding.PrivacyNoticeAt = this.PrivacyNoticeAt; 
                wspBinding.PrivacyNoticeVersion = this.PrivacyNoticeVersion;
            } 

            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