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

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

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

    public sealed partial class WindowsClientElement : ConfigurationElement 
    { 
        public WindowsClientElement()
        { 
        }

        [ConfigurationProperty(ConfigurationStrings.AllowNtlm, DefaultValue = SspiSecurityTokenProvider.DefaultAllowNtlm)]
        public bool AllowNtlm 
        {
            get { return (bool)base[ConfigurationStrings.AllowNtlm]; } 
            set { base[ConfigurationStrings.AllowNtlm] = value; } 
        }
 
        [ConfigurationProperty(ConfigurationStrings.AllowedImpersonationLevel, DefaultValue = WindowsClientCredential.DefaultImpersonationLevel)]
        [ServiceModelEnumValidator(typeof(TokenImpersonationLevelHelper))]
        public TokenImpersonationLevel AllowedImpersonationLevel
        { 
            get { return (TokenImpersonationLevel)base[ConfigurationStrings.AllowedImpersonationLevel]; }
            set { base[ConfigurationStrings.AllowedImpersonationLevel] = value; } 
        } 

        public void Copy(WindowsClientElement from) 
        {
            if (this.IsReadOnly())
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ConfigurationErrorsException(SR.GetString(SR.ConfigReadOnly))); 
            }
            if (null == from) 
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("from");
            } 

            this.AllowNtlm = from.AllowNtlm;
            this.AllowedImpersonationLevel = from.AllowedImpersonationLevel;
        } 

        internal void ApplyConfiguration(WindowsClientCredential windows) 
        { 
            if (windows == null)
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("windows");
            }
            windows.AllowNtlm = this.AllowNtlm;
            windows.AllowedImpersonationLevel = this.AllowedImpersonationLevel; 
        }
    } 
} 

 


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