AuthenticationInformation.cs 560 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.ObjectModel;
  3. using System.IdentityModel.Tokens;
  4. namespace System.Security.Claims
  5. {
  6. public class AuthenticationInformation
  7. {
  8. private Collection<AuthenticationContext> authorizationContexts = new Collection<AuthenticationContext> ();
  9. public String Address { get; set; }
  10. public Collection<AuthenticationContext> AuthorizationContexts { get { return authorizationContexts; } }
  11. public String DnsName { get; set; }
  12. public Nullable<DateTime> NotOnOrAfter { get; set; }
  13. public String Session { get; set; }
  14. }
  15. }