ConsentDelegateImplementation.cs 265 B

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