userinfo.cs

来自「人物传记/成功经验人物传记/成功经验人物传记/成功经验人物传记/成功经验人物传记」· CS 代码 · 共 76 行

CS
76
字号
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 + =
减小字号Ctrl + -
显示快捷键?