QuickOPC User's Guide and Reference
UAEnumFieldInfo Constructor(String,String,String,Int64)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.DataTypeSchema Namespace > UAEnumFieldInfo Class > UAEnumFieldInfo Constructor : UAEnumFieldInfo Constructor(String,String,String,Int64)
A name for the field that is unique within the enum type info.
A human-readable representation of the value of the enumeration.
A localized description of the enumeration value. This field can contain an empty string if no description is available.
The integer representation of an enumeration.
Initializes a new instance of the class.
Syntax
'Declaration
 
Public Function New( _
   ByVal name As String, _
   ByVal displayName As String, _
   ByVal description As String, _
   ByVal value As Long _
)
'Usage
 
Dim name As String
Dim displayName As String
Dim description As String
Dim value As Long
 
Dim instance As New UAEnumFieldInfo(name, displayName, description, value)
public UAEnumFieldInfo( 
   string name,
   string displayName,
   string description,
   long value
)
public:
UAEnumFieldInfo( 
   String^ name,
   String^ displayName,
   String^ description,
   int64 value
)

Parameters

name
A name for the field that is unique within the enum type info.
displayName
A human-readable representation of the value of the enumeration.
description
A localized description of the enumeration value. This field can contain an empty string if no description is available.
value
The integer representation of an enumeration.
Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also