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.
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.
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 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}");