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



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

Property Value

An integer specifying the chunk size for DeleteMonitoredItems service calls.

The default value of this property is 500.

Remarks

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