Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetPortReference(Hash128)

Retrieves a reference to a port in the graph associated with this context, using the port's unique identifier.
Read time 1 minuteLast updated 6 days ago

Definition

public PortReference GetPortReference(Hash128 portID)

Parameters

portID

Unique identifier of the target port.

Returns

Type

Description

PortReferenceA PortReference that references the port with the specified ID in the graph associated with this context.

Remarks

The returned PortReference can be used to set, retrieve, or clear the port preview for that specific port in the graph canvas. Throws ObjectDisposedException when you access this property after you call Context.Dispose on the context. Throws ArgumentException when you provide an invalid
portID
.

Examples

context.GetPortReference(portID).SetPreview("42.0");