'DeclarationPublic Function Match( _ ByVal groupId As String, _ ByVal edgeNodeId As String _ ) As Boolean
'UsageDim instance As SparkplugEdgeNodeDescriptor Dim groupId As String Dim edgeNodeId As String Dim value As Boolean value = instance.Match(groupId, edgeNodeId)
public bool Match( string groupId, string edgeNodeId )
public: bool Match( String^ groupId, String^ edgeNodeId )
Parameters
- groupId
- The Sparkplug group ID.
The value represents a Sparkplug group ID. It must be a string with valid UTF-8 characters except for the reserved characters of '+' (plus), '/' (forward slash), and '#' (number sign).
The value of this parameter cannot be
null(Nothingin Visual Basic). - edgeNodeId
- The Sparkplug edge node ID.
The value represents a Sparkplug edge node ID. It must be a string with valid UTF-8 characters except for the reserved characters of '+' (plus), '/' (forward slash), and '#' (number sign).
The value of this parameter cannot be
null(Nothingin Visual Basic).
Return Value
true if groupId and edgeNodeId match the filter given by this edge node descriptor; returns false otherwise.