Skip to content

Commit 042c219

Browse files
committed
Update README.md
1 parent a08f325 commit 042c219

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,16 @@ void CustomConsentGDPR(
314314

315315
The vendor grants will be re-generated, this time taking into consideration the list of vendors, categories and legitimate interest categories you pass as parameters. The method is asynchronous so you must pass a completion handler that will receive back an instance of `GdprConsent` in case of success or it'll call the delegate method `onError` in case of failure.
316316

317+
Using the same strategy for the custom consent, it's possible to programmatically delete the current user consent to a list of vendors, categories and legitimate interest categories by using the following method from the consent lib:
318+
319+
```c#
320+
void DeleteCustomConsentGDPR(
321+
string[] vendors,
322+
string[] categories,
323+
string[] legIntCategories,
324+
Action<GdprConsent> onSuccessDelegate)
325+
```
326+
317327
It's important to notice, this methods are intended to be used for **custom** vendors and purposes only. For IAB vendors and purposes, it's still required to get consent via the consent message or privacy manager.
318328

319329
# Build for iOS

0 commit comments

Comments
 (0)