'Declaration
Public Function New( _ ByVal namespaceUriString As String, _ ByVal unitId As Integer, _ ByVal displayName As String, _ ByVal description As String _ )
'Usage
Dim namespaceUriString As String Dim unitId As Integer Dim displayName As String Dim description As String Dim instance As New UAEUInformation(namespaceUriString, unitId, displayName, description)
public UAEUInformation( string namespaceUriString, int unitId, string displayName, string description )
public: UAEUInformation( String^ namespaceUriString, int unitId, String^ displayName, String^ description )
Parameters
- namespaceUriString
- Identifies the organization (company, standards organization) that defines the EUInformation.
The value represents an OPC UA namespace URI string. Any string can be passed to this parameter (i.e. will not cause System.ArgumentException), but not all values make sense and will work when an operation using them is attempted.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - unitId
- Identifier for programmatic evaluation.
- displayName
- The display name of the engineering unit is typically the abbreviation of the engineering unit, e.g. ”h” for hour or ”m/s” for meter per second.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - description
- Contains the full name of the engineering unit such as ”hour” or ”meter per second”.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).