Cats.Library.CatsReportServerCredentials.GetFormsCredentials C# (CSharp) Method

GetFormsCredentials() public method

public GetFormsCredentials ( System &authCookie, string &userName, string &password, string &authority ) : bool
authCookie System
userName string
password string
authority string
return bool
        public bool GetFormsCredentials(out System.Net.Cookie authCookie, out string userName, out string password, out string authority)
        {
            authCookie = null;
            userName = _userName;
            password = _password;
            authority = null;
            return false;
        }