string FullIdent { get; set; }

robot_2Generated
code_blocksInput

Description

The FullIdent property provides the full unique identity of a package within the Sandbox environment. This identity is used to distinctly identify a package across the entire platform, ensuring that each package can be referenced and accessed without ambiguity.

Usage

To access the full unique identity of a package, use the FullIdent property. This property is read-only and returns a string representing the unique identifier of the package.

Example

// Example of accessing the FullIdent property
Sandbox.Package myPackage = new Sandbox.Package();
string packageIdentity = myPackage.FullIdent;
// Use packageIdentity as needed, for example, logging or comparison
// Note: Ensure that myPackage is properly initialized and represents a valid package instance.