Build 1.01.318.0

[This is preliminary documentation and is subject to change.]

A name qualified with a namespace.

Namespace: Opc.Ua
Assembly: Opc.Ua.Core (in Opc.Ua.Core.dll) Version: 1.1.318.1 (1.01.318.1)

Syntax

C#
public class QualifiedName : IFormattable, 
	ICloneable, IComparable
Visual Basic
Public Class QualifiedName _
	Implements IFormattable, ICloneable, IComparable
Visual C++
public ref class QualifiedName : IFormattable, 
	ICloneable, IComparable

Remarks

The QualifiedName is defined in Part 3 - Address Space Model, Section 7.3, titled Qualified Name.

The QualifiedName is a simple wrapper class that is used to generate a fully-qualified name for any type that has a name.

A Fully Qualified name is one that consists of a name, and an index of which namespace (within a namespace table) this name belongs to. For example
Namespace Index = 1
Name = MyName
becomes:
1:MyName

Inheritance Hierarchy

System..::..Object
  Opc.Ua..::..QualifiedName

See Also