string EditUrl { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

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.

Usage

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.

Example

// 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
});