Connectivity Software User's Guide and Reference
CreateMonitoredItemsChunkSize Property (UAClientSubscriptionParameters)



OpcLabs.EasyOpcUAPrimitives Assembly > OpcLabs.EasyOpc.UA.Engine Namespace > UAClientSubscriptionParameters Class : CreateMonitoredItemsChunkSize Property
The maximum number of monitored items to create in a single service call to the server.
Syntax
'Declaration
 
Public Property CreateMonitoredItemsChunkSize As Integer
'Usage
 
Dim instance As UAClientSubscriptionParameters
Dim value As Integer
 
instance.CreateMonitoredItemsChunkSize = value
 
value = instance.CreateMonitoredItemsChunkSize
public int CreateMonitoredItemsChunkSize {get; set;}
public:
property int CreateMonitoredItemsChunkSize {
   int get();
   void set (    int value);
}

Property Value

An integer specifying the chunk size for CreateMonitoredItems service calls.

The default value of this property is 500.

Remarks

When creating multiple monitored items, the component will split the operation into chunks of this size.

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

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