⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userinfo.cs

📁 人物传记/成功经验人物传记/成功经验人物传记/成功经验人物传记/成功经验人物传记/成功经验
💻 CS
字号:
using System;
using System.Web.Security;


namespace SkyiSite.DBUtility
{  
    public class UserInfo 
    {        
        private string _Password;
        private string[] _RoleName;
        private SkyiSite.DBUtility.ProfileInfo _ProfileInfo;
        private MembershipUser _membershipUser;
        public UserInfo()
        {
        }
        public string Password
        {
            get
            {
                return this._Password;
            }
            set
            {
                if ((this._Password != value))
                {
                    this._Password = value;
                }
            }
        }
        public MembershipUser membershipUser
        {
            get
            {
                return this._membershipUser;
            }
            set
            {
                if ((this._membershipUser != value))
                {
                    this._membershipUser = value;
                }
            }
        }
        public string[] RoleName
        {
            get
            {
                return this._RoleName;
            }
            set
            {
                if ((this._RoleName != value))
                {
                    this._RoleName = value;
                }
            }
        }

        public SkyiSite.DBUtility.ProfileInfo ProfileInfo
        {
            get
            {
                return this._ProfileInfo;
            }
            set
            {
                if ((this._ProfileInfo != value))
                {
                    this._ProfileInfo = value;
                }
            }
        }

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -