Guid Id { get; set; }

robot_2Generated
code_blocksInput

Description

This property represents the unique identifier for a connection in the Sandbox environment. It is a Guid that uniquely distinguishes each connection instance, ensuring that each connection can be individually identified and managed.

Usage

Use the Id property to retrieve the unique identifier of a connection. This can be useful for logging, tracking, or managing connections within your application.

Example

// Example of accessing the Id property of a connection
Connection connection = Connection.Find(someGuid);
Guid connectionId = connection.Id;

// Output the connection Id
Debug.Log($"Connection ID: {connectionId}");