Click or drag to resize

Signal.GetDataByType Method (Type)

Gets signal data based on the type of data requested. This data represents optional properties on the signal.

Namespace:  AGI.Foundation.Communications
Assembly:  AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public Object GetDataByType(
	Type type
)

Parameters

type
Type: System.Type
The type of data to retrieve.

Return Value

Type: Object
The data, or null if there is no data of the given type.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when type is null.
Remarks
There should be only one instance of a given type in a given signal. If there are more, this method will return the first occurrence.
See Also