QuickOPC User's Guide and Reference
CreateBinding Method (PointBinder)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.LiveBinding Namespace > PointBinder Class : CreateBinding Method
The type of binding to be created.The type of binding to be created.
Creates a binding of given type. Creates a binding of given type.
Syntax
'Declaration
 
Public Overrides NotOverridable Function CreateBinding( _
   ByVal bindingType As Type _
) As IAbstractBinding
'Usage
 
Dim instance As PointBinder
Dim bindingType As Type
Dim value As IAbstractBinding
 
value = instance.CreateBinding(bindingType)
public override IAbstractBinding CreateBinding( 
   Type bindingType
)
public:
IAbstractBinding^ CreateBinding( 
   Type^ bindingType
) override 

Parameters

bindingType
The type of binding to be created.The type of binding to be created.

Return Value

The newly instantiated binding.The newly instantiated binding.
Exceptions
ExceptionDescription
One of the arguments provided to a method is not valid.
A null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.
One of the arguments provided to a method is not valid.
A null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.
Remarks
The bindingType must be one of the types supported by this binding provider, i.e. one of the types returned by GetBindingTypes method.The bindingType must be one of the types supported by this binding provider, i.e. one of the types returned by GetBindingTypes method.
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