OPC Studio User's Guide and Reference
FromAEEvent Method



OpcLabs.EasyOpcClassic Assembly > OpcLabs.EasyOpc.AlarmsAndEvents.ComplexEventProcessing Namespace > AEEventDataPayload Class : FromAEEvent Method
Event data.

The value of this parameter can be null (Nothing in Visual Basic).

Converts an for OPC Alarms&Events event object to an event payload.
Syntax
'Declaration
 
<CanBeNullAttribute()>
Public Shared Function FromAEEvent( _
   ByVal eventData As AEEventData _
) As AEEventDataPayload
'Usage
 
Dim eventData As AEEventData
Dim value As AEEventDataPayload
 
value = AEEventDataPayload.FromAEEvent(eventData)
[CanBeNull()]
public static AEEventDataPayload FromAEEvent( 
   AEEventData eventData
)
[CanBeNull()]
public:
static AEEventDataPayload^ FromAEEvent( 
   AEEventData^ eventData
) 

Parameters

eventData
Event data.

The value of this parameter can be null (Nothing in Visual Basic).

Return Value

Returns an event payload containing the data from the event object.

This method can return null (Nothing in Visual Basic).

Remarks

In languages that support implicit conversions (such as C# or VB.NET), in many cases you do not have call this method explicitly. When indicated, a call to an available equivalent implicit conversion operator will be created by the compiler automatically.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also