ConsentDelegateImplementation.cs 297 B

12345678910111213
  1. using Microsoft.InformationProtection;
  2. namespace AipGateway.AIP
  3. {
  4. public class ConsentDelegateImplementation : IConsentDelegate
  5. {
  6. public Consent GetUserConsent(string url)
  7. {
  8. //return Consent.AcceptAlways;
  9. return Consent.Accept;
  10. }
  11. }
  12. }