- Manuale introduttivo
- Utilizzo del software
- OPC UA
- Oggetti grafici e di layout
- Sessioni e impostazioni locali
- Sviluppo di soluzioni
- Sviluppo di progetti con C#
- NetLogic
- Metodi ed eventi in C#
- Riferimento API C#
- Esempi di applicazione
- Esercitazione dell'interfaccia utente
- Esercitazione sui collegamenti dinamici
- Esercitazione sui logger
- Esercitazione sugli allarmi
- Esercitazione sulle NetLogic
- Riferimento su oggetti e variabili
IUANode.Get(browsePath)
Returns an
IUANode
C# object that corresponds to the first child node of the node on which the method is invoked. The returned object name corresponds to the argument.IUANode Get(stringbrowsePath);
Arguments
- browsePath(string)
- Can be either:
- TheBrowseNameof the object
- The path of the object in the information model, uniquely expressed as a sequence ofBrowseNamevalues separated by/
Returns
- IUANode
- A C# object that matches the requested node.
Examples
The following examples show a returned C# object that corresponds to the
Motor1
node that is a child of Machine1
:
var motor1 = Owner.Get("Machine1").Get("Motor1");
var motor1 = Owner.Get("Machine1/Motor1");
Fornire un feedback