Attempts to pull multiple OPC data change notifications subscribed to by the
OpcLabs.EasyOpc.UA.IEasyUAClient.SubscribeMultipleMonitoredItems or SubscribeDataChange method.
'Declaration
<CanBeNullAttribute()>
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>
<ElementsNotNullAttribute()>
Function PullMultipleDataChangeNotifications( _
ByVal As Integer, _
ByVal As Integer _
) As Object()
'Usage
Dim instance As _EasyUAClient
Dim maximumCount As Integer
Dim millisecondsTimeout As Integer
Dim value() As Object
value = instance.PullMultipleDataChangeNotifications(maximumCount, millisecondsTimeout)
[CanBeNull()]
[EditorBrowsable(EditorBrowsableState.Advanced)]
[ElementsNotNull()]
object[] PullMultipleDataChangeNotifications(
int ,
int
)
[CanBeNull()]
[EditorBrowsable(EditorBrowsableState.Advanced)]
[ElementsNotNull()]
array<Object^>^ PullMultipleDataChangeNotifications(
int ,
int
)
Parameters
- maximumCount
- Maximum number of event notifications returned.
- millisecondsTimeout
- The number of milliseconds to wait, or System.Threading.Timeout.Infinite (-1) to wait indefinitely.
Return Value
An array of event arguments, or null
if no event is available within the specified time.
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