QuickOPC User's Guide and Reference
IsKnownMonitoredItemSubscriptionHandle Method (EasyUAClient)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA Namespace > EasyUAClient Class : IsKnownMonitoredItemSubscriptionHandle Method
The monitored item subscription handle to be tested.
Determines whether the given monitored item subscription handle is known to this client.
Syntax
'Declaration
 
Public Function IsKnownMonitoredItemSubscriptionHandle( _
   ByVal handle As Integer _
) As Boolean
'Usage
 
Dim instance As EasyUAClient
Dim handle As Integer
Dim value As Boolean
 
value = instance.IsKnownMonitoredItemSubscriptionHandle(handle)
public bool IsKnownMonitoredItemSubscriptionHandle( 
   int handle
)
public:
bool IsKnownMonitoredItemSubscriptionHandle( 
   int handle
) 

Parameters

handle
The monitored item subscription handle to be tested.

Return Value

Returns true if the given handle is known to the client (i.e. represents a currently subscribed monitored item). Otherwise, returns false.
Remarks

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 2012 R2, Windows Server 2016; .NET: Linux, macOS, Microsoft Windows

See Also