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

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

namespace System.ServiceModel.Configuration 
{
    using System.Configuration; 
    using System.ServiceModel.Channels; 
    using System.Globalization;
    using System.Reflection; 
    using System.Security;

    public sealed partial class ClientSection : ConfigurationSection, IConfigurationContextProviderInternal
    { 
        public ClientSection()
        { 
        } 

        [ConfigurationProperty(ConfigurationStrings.DefaultCollectionName, Options = ConfigurationPropertyOptions.IsDefaultCollection)] 
        public ChannelEndpointElementCollection Endpoints
        {
            get {return (ChannelEndpointElementCollection) this[ConfigurationStrings.DefaultCollectionName]; }
        } 

        [ConfigurationProperty(ConfigurationStrings.Metadata)] 
        public MetadataElement Metadata 
        {
            get {return (MetadataElement) this[ConfigurationStrings.Metadata]; } 
        }

        internal static ClientSection GetSection()
        { 
            return (ClientSection)ConfigurationHelpers.GetSection(ConfigurationStrings.ClientSectionPath);
        } 
 
        /// 
        /// Critical - calls Critical method UnsafeGetSection which elevates in order to fetch config 
        ///            caller must guard access to resultant config section
        /// 
        [SecurityCritical]
        internal static ClientSection UnsafeGetSection() 
        {
            return (ClientSection)ConfigurationHelpers.UnsafeGetSection(ConfigurationStrings.ClientSectionPath); 
        } 

        protected override void InitializeDefault() 
        {
            this.Metadata.SetDefaults();
        }
 
        protected override void PostDeserialize()
        { 
            this.ValidateSection(); 
            base.PostDeserialize();
        } 

        void ValidateSection()
        {
            ContextInformation context = ConfigurationHelpers.GetEvaluationContext(this); 
            if (context != null)
            { 
                foreach (ChannelEndpointElement endpoint in this.Endpoints) 
                {
                    BehaviorsSection.ValidateEndpointBehaviorReference(endpoint.BehaviorConfiguration, context, endpoint); 
                    BindingsSection.ValidateBindingReference(endpoint.Binding, endpoint.BindingConfiguration, context, endpoint);
                }
            }
        } 

        ContextInformation IConfigurationContextProviderInternal.GetEvaluationContext() 
        { 
            return this.EvaluationContext;
        } 

        /// 
        ///   RequiresReview - the return value will be used for a security decision -- see comment in interface definition
        ///  
        ContextInformation IConfigurationContextProviderInternal.GetOriginalEvaluationContext()
        { 
            DiagnosticUtility.DebugAssert("Not implemented: IConfigurationContextProviderInternal.GetOriginalEvaluationContext"); 
            return null;
        } 
    }
}


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