摘要:
源贴地址:http://www.rainsts.net/article.asp?id=274.NET 基于角色安全性验证的核心是主体(Principal)和标识(Identity)对象,其中主体负责角色或者组的验证,标识对象封装有关正在验证的用户或实体的信息。角色安全性验证通过生成可供当前线程使用的主体信息来支持授权,其中主体用关联的标识进行构造。public interface IPrincipal{// Methodsbool IsInRole(string role);// PropertiesIIdentity Identity { get; }}public interface II 阅读全文