OPC Studio User's Guide and Reference
GetBindingTypes Method (IBindingProvider)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.LiveBinding Namespace > IBindingProvider Interface : GetBindingTypes Method
Determines the binding types supported by this binding provider.
Syntax
'Declaration
 
<NotNullAttribute()>
Function GetBindingTypes() As IEnumerable(Of Type)
'Usage
 
Dim instance As IBindingProvider
Dim value As IEnumerable(Of Type)
 
value = instance.GetBindingTypes()
[NotNull()]
IEnumerable<Type> GetBindingTypes()
[NotNull()]
IEnumerable<Type^>^ GetBindingTypes(); 

Return Value

Returns the binding types supported.

This method never returns null (Nothing in Visual Basic).

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