我为我的MVC项目开发了一个简单的IIdentity
和IPrincipal
,我想覆盖User
和User.Identity
以返回正确类型的值< / p>
这是我的自定义身份:
public class MyIdentity : IIdentity
{
public MyIdentity(string name, string authenticationType, bool isAuthenticated, Guid userId)
{
Name = name;
AuthenticationType = authenticationType;
IsAuthenticated = isAuthenticated;
UserId = userId;
}
#region IIdentity
public string Name { get; private set; }
public string AuthenticationType { get; private set; }
public bool IsAuthenticated { get; private set; }
#endregion
public Guid UserId { get; private set; }
}
这是我的自定义校长:
public class MyPrincipal : IPrincipal
{
public MyPrincipal(IIdentity identity)
{
Identity = identity;
}
#region IPrincipal
public bool IsInRole(string role)
{
throw new NotImplementedException();
}
public IIdentity Identity { get; private set; }
#endregion
}
这是我的自定义控制器,我成功更新了User
属性以返回我的自定义主体类型:
public abstract class BaseController : Controller
{
protected new virtual MyPrincipal User
{
get { return HttpContext == null ? null : HttpContext.User as MyPrincipal; }
}
}
如何以User.Identity
方式返回我的自定义标识类型?
答案 0 :(得分:3)
您可以在IPrincipal
课程中明确实施MyPrincipal
,并添加Identity
类型MyIdentity
的{{1}}属性。
public class MyPrincipal : IPrincipal
{
public MyPrincipal(MyIdentity identity)
{
Identity = identity;
}
public MyIdentity Identity {get; private set; }
IIdentity IPrincipal.Identity { get { return this.Identity; } }
public bool IsInRole(string role)
{
throw new NotImplementedException();
}
}
答案 1 :(得分:1)
如果没有明确的演员
,你会问一些无法完成的事情public class MyClass
{
private SomeThing x;
public ISomeThing X { get { return x; } }
}
当您致电MyClass.X
时,您将获得ISomeThing
,而不是SomeThing
。你可以做一个明确的演员,但这有点笨拙。
MyClass myClass = new MyClass();
SomeThing someThing = (SomeThing)(myClass.X);
理想情况下,您为IPrincipal.Name
存储的值将是唯一的。如果“jdoe”在您的应用程序中不是唯一的,那么如果存储用户ID,则IPrincipal.Name
属性会更好。在您的情况下,这似乎是一个GUID。