string Ident { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Ident property of the Package class provides a unique identity for the package within its organization. This identity is crucial for distinguishing between different packages under the same organization, ensuring that each package can be uniquely identified and managed.

Usage

To access the Ident property, you need to have an instance of the Package class. This property is read-only and returns a string representing the unique identifier of the package.

Example

// Example of accessing the Ident property

// Assume 'package' is an instance of Sandbox.Package
string packageIdent = package.Ident;

// Output the unique identifier
// Note: Avoid using Console.WriteLine in Sandbox
// Use the appropriate logging or UI display method
Log.Info($"Package Identifier: {packageIdent}");