WSTrustMessage.cs 990 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.IdentityModel;
  3. namespace System.IdentityModel.Protocols.WSTrust
  4. {
  5. public abstract class WSTrustMessage : OpenObject
  6. {
  7. public bool AllowPostdating { get; set; }
  8. public EndpointReference AppliesTo { get; set; }
  9. public string AuthenticationType { get; set; }
  10. public BinaryExchange BinaryExchange { get; set; }
  11. public string CanonicalizationAlgorithm { get; set; }
  12. public string Context { get; set; }
  13. public string EncryptionAlgorithm { get; set; }
  14. public string EncryptWith { get; set; }
  15. public Entropy Entropy { get; set; }
  16. public int? KeySizeInBits { get; set; }
  17. public string KeyType { get; set; }
  18. public string KeyWrapAlgorithm { get; set; }
  19. public Lifetime Lifetime { get; set; }
  20. public string ReplyTo { get; set; }
  21. public string RequestType { get; set; }
  22. public string SignatureAlgorithm { get; set; }
  23. public string SignWith { get; set; }
  24. public string TokenType { get; set; }
  25. public UseKey UseKey { get; set; }
  26. }
  27. }