I'm confused at the following code, it looks like it's disabled here?
public bool GetFormsCredentials(out Cookie authCookie, out string userName, out string password, out string authority) {
authCookie = null;
userName = password = authority = null;
return false;
}
shouldn't it look like this?
userName = myName
password = 12345
authority = someAuthority