C# Class Opc.Ua.Com.Client.AeParsedNodeId

Stores the elements of a NodeId after it is parsed.
The NodeIds used by the samples are strings with an optional path appended. The RootType identifies the type of Root Node. The RootId is the unique identifier for the Root Node. The ComponentPath is constructed from the SymbolicNames of one or more children of the Root Node.
Inheritance: ParsedNodeId
Mostrar archivo Open project: OPCFoundation/UA-.NET Class Usage Examples

Public Methods

Method Description
Construct ( ) : Opc.Ua.NodeId

Constructs a node identifier.

Construct ( int eventType, int categoryId, int attributeId, ushort namespaceIndex ) : Opc.Ua.NodeId

Constructs the NodeId for the attribute of the specified event type.

Construct ( int eventType, int categoryId, string conditionName, ushort namespaceIndex ) : Opc.Ua.NodeId

Constructs the NodeId for the specified event type.

Construct ( int rootType, string rootId, string componentPath, ushort namespaceIndex ) : Opc.Ua.NodeId

Constructs a node identifier.

Construct ( int eventType, ushort namespaceIndex ) : Opc.Ua.NodeId

Constructs the NodeId for the attribute of the specified event type.

ConstructIdForCondition ( string sourceId, int categoryId, string conditionName, ushort namespaceIndex ) : Opc.Ua.NodeId

Constructs the id for condition.

Parse ( Opc.Ua.NodeId nodeId ) : AeParsedNodeId

Parses the specified node identifier.

Private Methods

Method Description
Construct ( EventType eventType, string componentPath, ushort namespaceIndex ) : Opc.Ua.NodeId

Constructs the NodeId for the specified event type node.

Construct ( EventTypeMapping mapping, ushort namespaceIndex ) : Opc.Ua.NodeId

Constructs the NodeId for the specified event type mapping node.

Method Details

Construct() public method

Constructs a node identifier.
public Construct ( ) : Opc.Ua.NodeId
return Opc.Ua.NodeId

Construct() public static method

Constructs the NodeId for the attribute of the specified event type.
public static Construct ( int eventType, int categoryId, int attributeId, ushort namespaceIndex ) : Opc.Ua.NodeId
eventType int Type of the event.
categoryId int The category id.
attributeId int The attribute id.
namespaceIndex ushort Index of the namespace.
return Opc.Ua.NodeId

Construct() public static method

Constructs the NodeId for the specified event type.
public static Construct ( int eventType, int categoryId, string conditionName, ushort namespaceIndex ) : Opc.Ua.NodeId
eventType int Type of the event.
categoryId int The category id.
conditionName string Name of the condition.
namespaceIndex ushort Index of the namespace.
return Opc.Ua.NodeId

Construct() public static method

Constructs a node identifier.
public static Construct ( int rootType, string rootId, string componentPath, ushort namespaceIndex ) : Opc.Ua.NodeId
rootType int
rootId string
componentPath string
namespaceIndex ushort
return Opc.Ua.NodeId

Construct() public static method

Constructs the NodeId for the attribute of the specified event type.
public static Construct ( int eventType, ushort namespaceIndex ) : Opc.Ua.NodeId
eventType int Type of the event.
namespaceIndex ushort Index of the namespace.
return Opc.Ua.NodeId

ConstructIdForCondition() public static method

Constructs the id for condition.
public static ConstructIdForCondition ( string sourceId, int categoryId, string conditionName, ushort namespaceIndex ) : Opc.Ua.NodeId
sourceId string The source id.
categoryId int The category id.
conditionName string Name of the condition.
namespaceIndex ushort Index of the namespace.
return Opc.Ua.NodeId

Parse() public static method

Parses the specified node identifier.
public static Parse ( Opc.Ua.NodeId nodeId ) : AeParsedNodeId
nodeId Opc.Ua.NodeId The node identifier.
return AeParsedNodeId