using System; using System.Collections.ObjectModel; using System.IdentityModel.Tokens; namespace System.Security.Claims { public class AuthenticationInformation { private Collection authorizationContexts = new Collection (); public String Address { get; set; } public Collection AuthorizationContexts { get { return authorizationContexts; } } public String DnsName { get; set; } public Nullable NotOnOrAfter { get; set; } public String Session { get; set; } } }