我有這樣的錯誤,顯示了(其實有2,但關於這部分代碼)ClientMembership沒有實現抽象成員
「MyApplication.Authorization.ClientMembership」不實現繼承的抽象成員'System.Web.Security.MembershipProvider.FindUsersByName'(string,int,int,out int)''不適用':System.Web.Security.MembershipProvider.FindUsersByName(string,int,int,outint)''不適用找到的方法覆蓋。
,而且我用的代碼是這一個:
public class ClientMembership : ExtendedMembershipProvider
{
public override bool ValidateUser(string username, string password)
{
MyApplication.Models.User usr = new MyApplication.Models.User();
return usr.ValidareCredential(username, password);
}
public override MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
{
throw new NotImplementedException();
}
public override MembershipUserCollection FindUserByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)
{
throw new NotImplementedException();
}
我不知道該怎麼辦。有人可以幫幫我嗎?
請仔細閱讀第二個錯誤。 – SLaks
我現在編輯。請看一下。 – Phreak