ProofDescriptor.cs 272 B

1234567891011
  1. using System.IdentityModel.Protocols.WSTrust;
  2. namespace System.IdentityModel.Tokens
  3. {
  4. public abstract class ProofDescriptor
  5. {
  6. public abstract SecurityKeyIdentifier KeyIdentifier { get; }
  7. public abstract void ApplyTo (RequestSecurityTokenResponse response);
  8. }
  9. }