string FullIdent { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The FullIdent property provides the full unique identity of a package within the Sandbox environment. This identity is crucial for distinguishing between different packages, especially when dealing with multiple packages that may have similar names or belong to the same organization.

Usage

Use the FullIdent property to retrieve the complete unique identifier of a package. This can be useful when you need to perform operations that require a precise reference to a specific package, such as fetching package details or managing dependencies.

Example

// Example of accessing the FullIdent property
Sandbox.Package myPackage = new Sandbox.Package();
string packageIdentity = myPackage.FullIdent;

// Use the packageIdentity for further operations
// For example, logging or passing it to a method that requires a package identifier
Log(packageIdentity);