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



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

Property Value

An integer specifying the chunk size for ModifyMonitoredItems service calls.

The default value of this property is 500.

Remarks

When modifying 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