我对以下代码感到困惑,看起来它在这里被禁用了?
public bool GetFormsCredentials(out Cookie authCookie, out string userName, out string password, out string authority) {
authCookie = null;
userName = password = authority = null;
return false;
}
它不应该是这样的吗?
userName = myName
password = 12345
authority = someAuthority