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

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

namespace System.ServiceModel.Configuration 
{
    using System.Configuration; 
    using System.ServiceModel.Channels; 
    using System.Globalization;
    using System.Net; 
    using System.Net.Security;
    using System.ServiceModel;
    using System.ServiceModel.Security;
    using System.ComponentModel; 

    public sealed partial class PeerSecurityElement : ConfigurationElement 
    { 
        [ConfigurationProperty(ConfigurationStrings.Mode, DefaultValue = PeerSecuritySettings.DefaultMode)]
        [ServiceModelEnumValidator(typeof(SecurityModeHelper))] 
        public SecurityMode Mode
        {
            get { return (SecurityMode)base[ConfigurationStrings.Mode]; }
            set { base[ConfigurationStrings.Mode] = value; } 
        }
 
        [ConfigurationProperty(ConfigurationStrings.Transport)] 
        public PeerTransportSecurityElement Transport
        { 
            get { return (PeerTransportSecurityElement)base[ConfigurationStrings.Transport]; }
        }

        internal void ApplyConfiguration(PeerSecuritySettings security) 
        {
            if (security == null) 
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("security");
            } 
            security.Mode = this.Mode;
            if (security.Mode != SecurityMode.None)
            {
                this.Transport.ApplyConfiguration(security.Transport); 
            }
        } 
 
        internal void InitializeFrom(PeerSecuritySettings security)
        { 
            if (security == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("security");
            } 
            this.Mode = security.Mode;
            if (security.Mode != SecurityMode.None) 
            { 
                this.Transport.InitializeFrom(security.Transport);
            } 
        }

        internal void CopyFrom(PeerSecurityElement source)
        { 
            if (source == null)
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("security"); 
            }
            this.Mode = source.Mode; 
            if (source.Mode != SecurityMode.None)
            {
                this.Transport.CopyFrom(source.Transport);
            } 
        }
    } 
} 


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