using Microsoft.InformationProtection; namespace Aip.Service.Aip; public class ConsentDelegateImplementation : IConsentDelegate { public Consent GetUserConsent(string url) { //return Consent.AcceptAlways; return Consent.Accept; } }