string DisplayName { get; set; }

robot_2Generated
code_blocksInput

Description

The DisplayName property of the Connection class represents the display name associated with a particular connection. This is typically used to identify the user or entity connected to the server or client in a human-readable format.

Usage

To access the DisplayName property, you need an instance of the Connection class. This property is read-only and returns a string representing the display name of the connection.

Example

// Example of accessing the DisplayName property
Connection connection = Connection.Find(someGuid);
string displayName = connection.DisplayName;

// Output the display name
// Note: Avoid using Console.WriteLine in Sandbox
// Use appropriate logging or UI display methods instead
Log.Info($"Connection Display Name: {displayName}");