The ITagSet
interface in the Sandbox
namespace provides a contract for managing a collection of tags. It allows adding, removing, checking, and enumerating tags within a set.
The ITagSet
interface in the Sandbox
namespace provides a contract for managing a collection of tags. It allows adding, removing, checking, and enumerating tags within a set.
Member Name | Summary |
---|---|
RemoveAll | Remove all tags from the set. |
Has | Checks if a specific tag exists in the set. |
Add | Adds a tag to the set. |
Remove | Removes a tag from the set. |
Set | Sets the state of a tag in the set. |
TryGetAll | Try to get all tags in the set. |
SetFrom | Sets tags from another ITagSet . |
Toggle | Toggles the presence of a tag in the set. |
HasAny | Checks if any of the specified tags exist in the set. |
HasAll | Checks if all of the specified tags exist in the set. |
GetEnumerator | Returns an enumerator that iterates through the tags in the set. |