コード例 #1
0
 protected SecurityPrincipal(SerializationInfo info, StreamingContext context)
 {
     this.profile  = info.GetValue("Profile", typeof(IUserProfile)) as IUserProfile;
     this.identity = info.GetValue("Identity", typeof(SecurityIdentity)) as SecurityIdentity;
     this.roleList = info.GetValue("Roles", typeof(IList <string>)) as IList <string>;
 }
コード例 #2
0
 public SecurityPrincipal(SecurityIdentity identity, string[] roles)
 {
     this.identity = identity;
     this.roleList = new List <string>(roles);
 }