HttpTransportSecurityElement.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 / HttpTransportSecurityElement.cs / 1 / HttpTransportSecurityElement.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 HttpTransportSecurityElement : ConfigurationElement 
    { 
        [ConfigurationProperty(ConfigurationStrings.ClientCredentialType, DefaultValue = HttpTransportSecurity.DefaultClientCredentialType)]
        [ServiceModelEnumValidator(typeof(HttpClientCredentialTypeHelper))] 
        public HttpClientCredentialType ClientCredentialType
        {
            get { return (HttpClientCredentialType)base[ConfigurationStrings.ClientCredentialType]; }
            set { base[ConfigurationStrings.ClientCredentialType] = value; } 
        }
 
        [ConfigurationProperty(ConfigurationStrings.ProxyCredentialType, DefaultValue = HttpTransportSecurity.DefaultProxyCredentialType)] 
        [ServiceModelEnumValidator(typeof(HttpProxyCredentialTypeHelper))]
        public HttpProxyCredentialType ProxyCredentialType 
        {
            get { return (HttpProxyCredentialType)base[ConfigurationStrings.ProxyCredentialType]; }
            set { base[ConfigurationStrings.ProxyCredentialType] = value; }
        } 

        [ConfigurationProperty(ConfigurationStrings.Realm, DefaultValue = HttpTransportSecurity.DefaultRealm)] 
        [StringValidator(MinLength = 0)] 
        public string Realm
        { 
            get { return (string)base[ConfigurationStrings.Realm]; }
            set
            {
                if (String.IsNullOrEmpty(value)) 
                {
                    value = String.Empty; 
                } 
                base[ConfigurationStrings.Realm] = value;
            } 
        }

        internal void ApplyConfiguration(HttpTransportSecurity security)
        { 
            if (security == null)
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("security"); 
            }
            security.ClientCredentialType = this.ClientCredentialType; 
            security.ProxyCredentialType = this.ProxyCredentialType;
            security.Realm = this.Realm;
        }
 
        internal void InitializeFrom(HttpTransportSecurity security)
        { 
            if (security == null) 
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("security"); 
            }
            this.ClientCredentialType = security.ClientCredentialType;
            this.ProxyCredentialType = security.ProxyCredentialType;
            this.Realm = security.Realm; 
        }
    } 
} 

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