Interface IConsentAgreementService
- Namespace
- CMS.DataProtection
- Assembly
- CMS.DataProtection.dll
Service to manage consent agreements.
public interface IConsentAgreementService
- Extension Methods
Methods
Agree(ContactInfo, ConsentInfo)
ConsentAgreementInfo Agree(ContactInfo contact, ConsentInfo consent)
Parameters
contact
ContactInfoContact
consent
ConsentInfoConsent
Returns
- ConsentAgreementInfo
Returns the agreement.
Remarks
If an active agreement already exists then this active agreement is kept and its hash is updated with a one from the given consent.
Exceptions
- ArgumentNullException
contact
isnull
-orconsent
isnull
GetAgreedConsents(ContactInfo)
Returns agreed consents for the given contact.
IEnumerable<Consent> GetAgreedConsents(ContactInfo contact)
Parameters
contact
ContactInfoContact.
Returns
- IEnumerable<Consent>
Remarks
Only returns agreed consents, revoked consents are not included.
Exceptions
- ArgumentNullException
Thrown when
contact
isnull
.
IsAgreed(ContactInfo, ConsentInfo)
bool IsAgreed(ContactInfo contact, ConsentInfo consent)
Parameters
contact
ContactInfoContact.
consent
ConsentInfoConsent.
Returns
- bool
Returns
true
when the given contact agreed with the specified consent and is still valid.
Exceptions
- ArgumentNullException
contact
isnull
-orconsent
isnull
Revoke(ContactInfo, ConsentInfo)
ConsentAgreementInfo Revoke(ContactInfo contact, ConsentInfo consent)
Parameters
contact
ContactInfoContact
consent
ConsentInfoConsent
Returns
- ConsentAgreementInfo
Returns the agreement object that has been revoked.
Exceptions
- ArgumentNullException
contact
isnull
-orconsent
isnull