我引用了How would I mimic User.IsInRole()中的代码来创建CustomPrincipal。
我正在开发Asp mvc应用程序。我需要一个自定义的IsInRole方法。因此,我创建了一个自IPrincipal继承的自定义Principle。
以下是我的CustomPrincipal
public interface ICustomPrincipal: IPrincipal
{
new bool IsInRole(string role);
}
public class CustomPrincipal: ICustomPrincipal
{
private User _user;
public CustomPrincipal(User user)
{
_user = user;
this.Identity = new GenericIdentity(this._user.UserName);
}
public IIdentity Identity
{
get;
set;
}
public bool IsInRole(string role)
{
var roles = role.Split(new char[] { ','});
return roles.Any(r => this._user.Roles.Contains(r));
}
}
我试图在剃刀中使用它,所以我创建了一个继承自WebViewPage的BaseViewPage类,代码是
public virtual new ICustomPrincipal User
{
get
{
try
{
return (ICustomPrincipal)base.User;
}
catch (Exception ex)
{
throw ex;
}
}
}
但是我在BaseViewPage中遇到了一个错误
无法转换类型的对象 键入“ System.Security.Principal.GenericPrincipal” “ SchoolApp.Web.Security.ICustomPrincipal”。
我尽力找到解决方案。但是找不到一个。有人可以帮我为什么会出现此投射错误。