BookMgnt.DAL.Security.CustomPrincipal.CustomPrincipal C# (CSharp) 메소드

CustomPrincipal() 공개 메소드

public CustomPrincipal ( string Username ) : System.Linq
Username string
리턴 System.Linq
        public CustomPrincipal(string Username)
        {
            this.Identity = new GenericIdentity(Username);
        }