Click or drag to resize

SignalGenerate Method (Signal)

Ensures a signal available for tracking. If the callingSignal is not null, then returns callingSignal, otherwise generates and returns a new signal.

Namespace:  Demo3D.IO
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntax
C#
public static Signal? Generate(
	Signal? callingSignal
)

Parameters

callingSignal
Type: Demo3D.IOSignal
A signal passed in to the calling function.

Return Value

Type: Signal
The existing signal (if it's not null) or a new signal.
Remarks
The signal must be Disposed when it reaches the end of the data pathway.
See Also