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

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

namespace System.ServiceModel.Configuration 
{
    using System; 
    using System.Configuration; 
    using System.ServiceModel.Channels;
    using System.ServiceModel.Security; 
    using System.Xml;
    using System.Security.Cryptography.X509Certificates;

    public sealed partial class PeerCredentialElement : ConfigurationElement 
    {
        public PeerCredentialElement() 
        { 
        }
 
        [ConfigurationProperty(ConfigurationStrings.Certificate)]
        public X509PeerCertificateElement Certificate
        {
            get { return (X509PeerCertificateElement)base[ConfigurationStrings.Certificate]; } 
        }
 
        [ConfigurationProperty(ConfigurationStrings.PeerAuthentication)] 
        public X509PeerCertificateAuthenticationElement PeerAuthentication
        { 
            get { return (X509PeerCertificateAuthenticationElement)base[ConfigurationStrings.PeerAuthentication]; }
        }

        [ConfigurationProperty(ConfigurationStrings.MessageSenderAuthentication)] 
        public X509PeerCertificateAuthenticationElement MessageSenderAuthentication
        { 
            get { return (X509PeerCertificateAuthenticationElement)base[ConfigurationStrings.MessageSenderAuthentication]; } 
        }
 
        public void Copy(PeerCredentialElement from)
        {
            if (this.IsReadOnly())
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ConfigurationErrorsException(SR.GetString(SR.ConfigReadOnly)));
            } 
            if (null == from) 
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("from"); 
            }

            this.Certificate.Copy(from.Certificate);
            this.PeerAuthentication.Copy(from.PeerAuthentication); 
            this.MessageSenderAuthentication.Copy(from.MessageSenderAuthentication);
        } 
 
        internal void ApplyConfiguration(PeerCredential creds)
        { 
            if (creds == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("creds");
            } 

            PropertyInformationCollection propertyInfo = this.ElementInformation.Properties; 
            if (propertyInfo[ConfigurationStrings.Certificate].ValueOrigin != PropertyValueOrigin.Default) 
            {
                this.Certificate.ApplyConfiguration(creds); 
            }
            if (propertyInfo[ConfigurationStrings.PeerAuthentication].ValueOrigin != PropertyValueOrigin.Default)
            {
                this.PeerAuthentication.ApplyConfiguration(creds.PeerAuthentication); 
            }
            if (propertyInfo[ConfigurationStrings.MessageSenderAuthentication].ValueOrigin != PropertyValueOrigin.Default) 
            { 
                this.MessageSenderAuthentication.ApplyConfiguration(creds.MessageSenderAuthentication);
            } 
        }
    }
}
 

 

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