'DeclarationPublic Overloads Function Match( _ ByVal groupId As String, _ ByVal edgeNodeId As String, _ ByVal deviceId As String _ ) As Boolean
'UsageDim instance As SparkplugDeviceDescriptor Dim groupId As String Dim edgeNodeId As String Dim deviceId As String Dim value As Boolean value = instance.Match(groupId, edgeNodeId, deviceId)
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). - deviceId
- The Sparkplug device ID.
The value represents a Sparkplug device 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, edgeNodeId and deviceId match the filter given by this device descriptor; returns false otherwise.