OPC Studio User's Guide and Reference
CombineWith Method (_UABrowseParameters)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.ComTypes Namespace > _UABrowseParameters Interface : CombineWith Method
A OpcLabs.EasyOpc.UA.UABrowseParameters object. The browse parameters to be combined with the current browse parameters.

The value of this parameter cannot be null (Nothing in Visual Basic).

Combines given browse parameters with current browse parameters.
Syntax
'Declaration
 
Sub CombineWith( _
   ByVal other As Object _
) 
'Usage
 
Dim instance As _UABrowseParameters
Dim other As Object
 
instance.CombineWith(other)
void CombineWith( 
   object other
)
void CombineWith( 
   Object^ other
) 

Parameters

other
A OpcLabs.EasyOpc.UA.UABrowseParameters object. The browse parameters to be combined with the current browse parameters.

The value of this parameter cannot be null (Nothing in Visual Basic).

Exceptions
ExceptionDescription

A null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

Remarks
Be aware that combining the browse parameters does not always produce a precise "union". The union operation works separately on each member of browse parameters, therefore the browse parameters resulting from combining may be "wider" than what a proper union would yield.

This member or type is for use from COM. It is not meant to be used from .NET or Python. Refer to the corresponding .NET member or type instead, if you are developing in .NET or Python.

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