App.Security.FormsAuthenticationWrapper.SetAuthCookie C# (CSharp) Method

SetAuthCookie() public method

public SetAuthCookie ( string userName, bool createPersistentCookie ) : void
userName string
createPersistentCookie bool
return void
        public void SetAuthCookie(string userName, bool createPersistentCookie)
        {
            FormsAuthentication.SetAuthCookie(userName, createPersistentCookie);
        }
FormsAuthenticationWrapper