string FullIdent { get; set; }

robot_2Generated
code_blocksInput

Description

The FullIdent property of the ProjectConfig class returns a string that combines the organization identifier (Org) and the project identifier (Ident). This combination is typically used to uniquely identify a project within a specific organization. For example, if the organization is "facepunch" and the project is "sandbox", the FullIdent would be "facepunch.sandbox".

Usage

To access the FullIdent property, you need to have an instance of the ProjectConfig class. This property is read-only and is automatically generated based on the values of the Org and Ident properties.

Example

// Assuming you have a ProjectConfig instance
ProjectConfig config = new ProjectConfig();

// Set Org and Ident
config.Org = "facepunch";
config.Ident = "sandbox";

// Access the FullIdent property
string fullIdent = config.FullIdent;
// fullIdent will be "facepunch.sandbox"