DOFObjectisSignalRequired Method OpenDOF Object Access Library
Used by a Provider to determine whether or not calling signal is necessary when a specified event occurs.

Namespace: org.opendof.core.oal
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax

C#
public bool isSignalRequired(
	DOFInterfaceEvent event_Renamed
)

Parameters

event_Renamed
Type: org.opendof.core.oalDOFInterfaceEvent
The event in question. This must not be null.

Return Value

Type: Boolean
True if a signal is required for the event. False otherwise.
Remarks

Used by a Provider to determine whether or not calling signal is necessary when a specified event occurs. Essentially checks to see whether or not any handlers have been registered for this event. If not, nobody is interested and there is no reason to signal the occurrence of the event.
See Also

Reference