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



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.LiveBinding Namespace > AbstractBinder Class : GetBindingTypes Method
Determines the binding types supported by this binding provider.
Syntax
'Declaration
 
Public MustOverride Function GetBindingTypes() As IEnumerable(Of Type)
'Usage
 
Dim instance As AbstractBinder
Dim value As IEnumerable(Of Type)
 
value = instance.GetBindingTypes()
public abstract IEnumerable<Type> GetBindingTypes()
public:
abstract IEnumerable<Type^>^ GetBindingTypes(); 

Return Value

Returns the binding types supported.
Remarks
The binding provider can only create (see CreateBinding) and manipulate bindings of the types it supports.
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