'DeclarationPublic Function New( _ ByVal groupId As String, _ ByVal edgeNodeId As String _ )
'UsageDim groupId As String Dim edgeNodeId As String Dim instance As New SparkplugDeviceDescriptor(groupId, edgeNodeId)
public SparkplugDeviceDescriptor( string groupId, string edgeNodeId )
public: SparkplugDeviceDescriptor( String^ groupId, String^ edgeNodeId )
Parameters
- groupId
- The Sparkplug group ID.
The value represents a Sparkplug group ID, or a filter for Sparkplug group IDs. It must be a string with valid UTF-8 characters except for the reserved character '/' (forward slash). Characters '+' (plus) and '#' are filters, and can only be used when they are the single character in the string.
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, or a filter for Sparkplug edge node IDs. It must be a string with valid UTF-8 characters except for the reserved character '/' (forward slash). Characters '+' (plus) and '#' are filters, and can only be used when they are the single character in the string.
The value of this parameter cannot be
null(Nothingin Visual Basic).