admin是用户系统中自定义的脚色
用来在创建GenericPrincipal的时候用,具体用
FormsIdentity id =(FormsIdentity)app.User.Identity;

string role="admin";
if(role!=string.Empty)
{
IPrincipal principal = new GenericPrincipal(id,new string[]{role});
         Context.User =principal;
}这段代码就是当前用户指定角色的,一般用在基于role的安全认证中