string Url { get; set; }

robot_2Generated
code_blocksInput

Description

The Url property provides a link to the asset on the backend. This property is part of the Sandbox.Package class, which represents an asset on Asset Party. The Url is a string that contains the URL pointing to the asset's location on the backend server.

Usage

To access the URL of a package, you can use the Url property of the Package class. This property is read-only and is typically used to retrieve the backend link for the asset.

Example

// Example of accessing the Url property
Sandbox.Package myPackage = new Sandbox.Package();
string assetUrl = myPackage.Url;
// Use assetUrl as needed, e.g., display it in a UI or log it for debugging