OpcEnumMember Members

Namespace: Opc.UaFx
Assemblies: Opc.UaFx.Advanced.dll, Opc.UaFx.Advanced.dll
The OpcEnumMember type exposes the following members.

OpcEnumMember(String, Int64)

Initializes a new instance of the OpcEnumMember class using the unique name and value of the enumeration member to define.

C#

public OpcEnumMember(string name, long value)


Parameters

name String

The name of the enumeration member which unique identifies the member in the enumeration.

value Int64

The value of the enumeration member.

OpcEnumMember(String, Int64, String)

Initializes a new instance of the OpcEnumMember class using the unique name, value and description of the enumeration member to define.

C#

public OpcEnumMember(string name, long value, string description)


Parameters

name String

The name of the enumeration member which unique identifies the member in the enumeration.

value Int64

The value of the enumeration member.

description String

The description of the purpose of the enumeration member.

Description

Gets description of the enumeration member which defines the purpose of the member.

C#

public string Description { get; }


Property Value

String

The description of the purpose of the enmeration member represented.

Name

Gets the name of the enumeration member which unique identifies the member in the enumeration.

C#

public string Name { get; }


Property Value

String

The unique name of the enumeration member.

Value

Gets the value of the enumeration member.

C#

public long Value { get; }


Property Value

Int64

The value of the enumeration member.