C# Class Opc.Ua.Server.ParsedNodeId

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.
Afficher le fichier Open project: OPCFoundation/UA-.NET Class Usage Examples

Méthodes publiques

Méthode Description
Construct ( ) : Opc.Ua.NodeId

Constructs a node identifier.

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

Constructs a node identifier from the component pieces.

Construct ( string componentName ) : Opc.Ua.NodeId

Constructs a node identifier for a component with the specified name.

CreateIdForComponent ( NodeState component, ushort namespaceIndex ) : Opc.Ua.NodeId

Constructs the node identifier for a component.

Parse ( Opc.Ua.NodeId nodeId ) : ParsedNodeId

Parses the specified node identifier.

Method Details

Construct() public méthode

Constructs a node identifier.
public Construct ( ) : Opc.Ua.NodeId
Résultat Opc.Ua.NodeId

Construct() public static méthode

Constructs a node identifier from the component pieces.
public static Construct ( int rootType, string rootId, ushort namespaceIndex ) : Opc.Ua.NodeId
rootType int
rootId string
namespaceIndex ushort
Résultat Opc.Ua.NodeId

Construct() public méthode

Constructs a node identifier for a component with the specified name.
public Construct ( string componentName ) : Opc.Ua.NodeId
componentName string
Résultat Opc.Ua.NodeId

CreateIdForComponent() public static méthode

Constructs the node identifier for a component.
public static CreateIdForComponent ( NodeState component, ushort namespaceIndex ) : Opc.Ua.NodeId
component NodeState
namespaceIndex ushort
Résultat Opc.Ua.NodeId

Parse() public static méthode

Parses the specified node identifier.
public static Parse ( Opc.Ua.NodeId nodeId ) : ParsedNodeId
nodeId Opc.Ua.NodeId The node identifier.
Résultat ParsedNodeId