FormsAuthenticationUser.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / FormsAuthenticationUser.cs / 5 / FormsAuthenticationUser.cs

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

/***************************************************************************** 
     From machine.config 
        
        
 
            
            

                 
                 
                        
                 

            

             
            
 
        

        
            
 
                 
                
             
            
        

    ******************************************************************************/ 

namespace System.Web.Configuration { 
    using System; 
    using System.Xml;
    using System.Configuration; 
    using System.Collections.Specialized;
    using System.Collections;
    using System.Globalization;
    using System.IO; 
    using System.Text;
    using System.Web.Util; 
    using System.ComponentModel; 
    using System.Security.Permissions;
 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public sealed class FormsAuthenticationUser : ConfigurationElement {
        private static ConfigurationPropertyCollection _properties;
        private static readonly ConfigurationProperty _propName = 
            new ConfigurationProperty("name",
                                        typeof(string), 
                                        "", 
                                        new LowerCaseStringConverter(),
                                        null, 
                                        ConfigurationPropertyOptions.IsRequired |
                                        ConfigurationPropertyOptions.IsKey);

        private static readonly ConfigurationProperty _propPassword = 
            new ConfigurationProperty("password",
                                        typeof(string), 
                                        "", 
                                        ConfigurationPropertyOptions.IsRequired);
 
        static FormsAuthenticationUser() {
            // Property initialization
            _properties = new ConfigurationPropertyCollection();
            _properties.Add(_propName); 
            _properties.Add(_propPassword);
        } 
 
        internal FormsAuthenticationUser() {
        } 

        public FormsAuthenticationUser(String name, String password)
            : this() {
            Name = name.ToLower(CultureInfo.InvariantCulture); 
            Password = password;
        } 
 
        protected override ConfigurationPropertyCollection Properties {
            get { 
                return _properties;
            }
        }
 
        [ConfigurationProperty("name", IsRequired = true, IsKey = true, DefaultValue = "")]
        [TypeConverter(typeof(LowerCaseStringConverter))] 
        [StringValidator()] 
        public string Name {
            get { 
                return (string)base[_propName];
            }
            set {
                base[_propName] = value; 
            }
        } 
 
        [ConfigurationProperty("password", IsRequired = true, DefaultValue = "")]
        [StringValidator()] 
        public string Password {
            get {
                return (string)base[_propPassword];
            } 
            set {
                base[_propPassword] = value; 
            } 
        }
 
    } // class FormsAuthenticationUser
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/***************************************************************************** 
     From machine.config 
        
        
 
            
            

                 
                 
                        
                 

            

             
            
 
        

        
            
 
                 
                
             
            
        

    ******************************************************************************/ 

namespace System.Web.Configuration { 
    using System; 
    using System.Xml;
    using System.Configuration; 
    using System.Collections.Specialized;
    using System.Collections;
    using System.Globalization;
    using System.IO; 
    using System.Text;
    using System.Web.Util; 
    using System.ComponentModel; 
    using System.Security.Permissions;
 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public sealed class FormsAuthenticationUser : ConfigurationElement {
        private static ConfigurationPropertyCollection _properties;
        private static readonly ConfigurationProperty _propName = 
            new ConfigurationProperty("name",
                                        typeof(string), 
                                        "", 
                                        new LowerCaseStringConverter(),
                                        null, 
                                        ConfigurationPropertyOptions.IsRequired |
                                        ConfigurationPropertyOptions.IsKey);

        private static readonly ConfigurationProperty _propPassword = 
            new ConfigurationProperty("password",
                                        typeof(string), 
                                        "", 
                                        ConfigurationPropertyOptions.IsRequired);
 
        static FormsAuthenticationUser() {
            // Property initialization
            _properties = new ConfigurationPropertyCollection();
            _properties.Add(_propName); 
            _properties.Add(_propPassword);
        } 
 
        internal FormsAuthenticationUser() {
        } 

        public FormsAuthenticationUser(String name, String password)
            : this() {
            Name = name.ToLower(CultureInfo.InvariantCulture); 
            Password = password;
        } 
 
        protected override ConfigurationPropertyCollection Properties {
            get { 
                return _properties;
            }
        }
 
        [ConfigurationProperty("name", IsRequired = true, IsKey = true, DefaultValue = "")]
        [TypeConverter(typeof(LowerCaseStringConverter))] 
        [StringValidator()] 
        public string Name {
            get { 
                return (string)base[_propName];
            }
            set {
                base[_propName] = value; 
            }
        } 
 
        [ConfigurationProperty("password", IsRequired = true, DefaultValue = "")]
        [StringValidator()] 
        public string Password {
            get {
                return (string)base[_propPassword];
            } 
            set {
                base[_propPassword] = value; 
            } 
        }
 
    } // class FormsAuthenticationUser
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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