BlogEngine.Core.CustomIdentity.CustomIdentity C# (CSharp) Метод

CustomIdentity() публичный Метод

public CustomIdentity ( string username, bool isAuthenticated ) : System
username string
isAuthenticated bool
Результат System
        public CustomIdentity(string username, bool isAuthenticated)
        {
            _name = username;
            _isAuthenticated = isAuthenticated;
        }

Same methods

CustomIdentity::CustomIdentity ( string username, string password ) : System
CustomIdentity