Clear Request
Clear requests remove the content from individual slots, or from a whole panel.
When removing the content from a slot its history is cleared too, and all associated resources are discarded.
The following examples assume you already have a configured
BoomackClient
instance in the variable client
.
See Get Started if you do not know how to configure
a BoomackClient instance.
Single Slot
To clear a slot you need to specify the panel ID and the slot ID inside the panel.
await client.ClearSlot("my-panel", "my-slot");
Whole Panel
To clear the content from all slots in a panel you just need to specify the panel ID.
await client.ClearPanel("my-panel");
Next: Evaluation Request