QuickOPC User's Guide and Reference
CombineWith Method (UABrowseParameters)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA Namespace > UABrowseParameters Class : CombineWith Method
A UABrowseParameters object. The browse parameters to be combined with the current browse parameters.
Combines given browse parameters with current browse parameters.
Syntax
'Declaration
 
Public Sub CombineWith( _
   ByVal other As UABrowseParameters _
) 
'Usage
 
Dim instance As UABrowseParameters
Dim other As UABrowseParameters
 
instance.CombineWith(other)
public void CombineWith( 
   UABrowseParameters other
)
public:
void CombineWith( 
   UABrowseParameters^ other
) 

Parameters

other
A UABrowseParameters object. The browse parameters to be combined with the current browse parameters.
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.
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