System.String[] Tags { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Tags property provides a list of tags associated with a package in the Sandbox environment. Tags are used to categorize and describe the package, making it easier to search and identify relevant packages based on specific criteria or themes.

Usage

To access the tags of a package, you can use the Tags property. This property returns an array of strings, each representing a tag associated with the package. You can iterate over this array to process or display the tags as needed.

Example

// Example of accessing the Tags property of a Sandbox.Package

// Assume 'package' is an instance of Sandbox.Package
string[] packageTags = package.Tags;

// Display each tag
foreach (string tag in packageTags)
{
    // Process or display the tag
    Console.WriteLine(tag);
}