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

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

namespace System.ServiceModel.Configuration 
{
    using System; 
    using System.ServiceModel; 
    using System.Configuration;
    using System.ServiceModel.Channels; 
    using System.Xml;

    public  partial class EndpointAddressElementBase : ConfigurationElement
    { 
        protected EndpointAddressElementBase()
        { 
        } 

        [ConfigurationProperty(ConfigurationStrings.Address, DefaultValue = null, Options = ConfigurationPropertyOptions.IsRequired)] 
        public Uri Address
        {
            get {return (Uri) base[ConfigurationStrings.Address]; }
            set {base[ConfigurationStrings.Address] = value; } 
        }
 
        [ConfigurationProperty(ConfigurationStrings.Headers)] 
        public AddressHeaderCollectionElement Headers
        { 
            get { return (AddressHeaderCollectionElement)base[ConfigurationStrings.Headers]; }
        }

        [ConfigurationProperty(ConfigurationStrings.Identity)] 
        public IdentityElement Identity
        { 
            get { return (IdentityElement)base[ConfigurationStrings.Identity]; } 
        }
 

        internal protected void Copy(EndpointAddressElementBase source)
        {
            if (this.IsReadOnly()) 
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ConfigurationErrorsException(SR.GetString(SR.ConfigReadOnly))); 
            } 
            if (null == source)
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("source");
            }

            this.Address = source.Address; 
            this.Headers.Headers = source.Headers.Headers;
            PropertyInformationCollection properties = source.ElementInformation.Properties; 
            if (properties[ConfigurationStrings.Identity].ValueOrigin != PropertyValueOrigin.Default) 
            {
                this.Identity.Copy(source.Identity); 
            }
        }

        public void InitializeFrom(EndpointAddress endpointAddress) 
        {
            if (null == endpointAddress) 
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("endpointAddress");
            } 

            this.Address = endpointAddress.Uri;
            this.Headers.Headers = endpointAddress.Headers;
 
            if (null != endpointAddress.Identity)
            { 
                this.Identity.InitializeFrom(endpointAddress.Identity); 
            }
        } 
    }
}

 


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