QuickOPC User's Guide and Reference
IsBound Method (AbstractBinder)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.LiveBinding Namespace > AbstractBinder Class : IsBound Method
The binding to be tested.
Determines whether a given binding is currently bound.
Syntax
'Declaration
 
Public MustOverride Function IsBound( _
   ByVal binding As IAbstractBinding _
) As Boolean
'Usage
 
Dim instance As AbstractBinder
Dim binding As IAbstractBinding
Dim value As Boolean
 
value = instance.IsBound(binding)
public abstract bool IsBound( 
   IAbstractBinding binding
)
public:
abstract bool IsBound( 
   IAbstractBinding^ binding
) 

Parameters

binding
The binding to be tested.

Return Value

true if the given binding is currently bound; false otherwise.
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