'Declaration
Public Overloads Function Equals( _ ByVal other As UAContentFilterElement _ ) As Boolean
'Usage
Dim instance As UAContentFilterElement Dim other As UAContentFilterElement Dim value As Boolean value = instance.Equals(other)
public bool Equals( UAContentFilterElement other )
public: bool Equals( UAContentFilterElement^ other )
Parameters
- other
- The other object to be tested for equality with this one.
Because the UAContentFilterElementBuilder has an implicit conversion to UAContentFilterElement, in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use a UAContentFilterElementBuilder in place of this parameter, and the corresponding OPC UA content filter element will be constructed automatically. When the implicit conversion operators are not supported (such as with Python.NET), you can convert a UAContentFilterElementBuilder to UAContentFilterElement using the UAContentFilterElementBuilder.ToUAContentFilterElement static method instead.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
true
if the objects are equal; otherwise, returns false
.