The EditUrl
property provides the URL to the package's page for editing. This property is part of the Sandbox.Project
class and is used to access the web page where the project package can be modified or updated.
The EditUrl
property provides the URL to the package's page for editing. This property is part of the Sandbox.Project
class and is used to access the web page where the project package can be modified or updated.
To access the EditUrl
property, you need to have an instance of the Project
class. This property is read-only and returns a string
representing the URL.
Note that this property is marked with the JsonIgnore
attribute, which means it will not be serialized or deserialized when using JSON serialization.
// Assuming 'project' is an instance of Sandbox.Project string editPageUrl = project.EditUrl; // Use the URL to open the edit page in a web browser System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo { FileName = editPageUrl, UseShellExecute = true });