AuthenticationContext.cs 378 B

12345678910111213141516
  1. using System;
  2. using System.Collections.ObjectModel;
  3. namespace System.IdentityModel.Tokens
  4. {
  5. public class AuthenticationContext
  6. {
  7. public Collection<string> Authorities { get; private set; }
  8. public string ContextClass { get; set; }
  9. public string ContextDeclaration { get; set; }
  10. public AuthenticationContext () {
  11. Authorities = new Collection<string> ();
  12. }
  13. }
  14. }