QuickOPC User's Guide and Reference
FullName Property (_DataType)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.DataTypeModel.ComTypes Namespace > _DataType Interface : FullName Property
The full name of the data type.
Syntax
'Declaration
 
<NotNullAttribute()>
Property FullName As String
'Usage
 
Dim instance As _DataType
Dim value As String
 
instance.FullName = value
 
value = instance.FullName
[NotNull()]
string FullName {get; set;}
[NotNull()]
property String^ FullName {
   String^ get();
   void set (    String^ value);
}
Remarks

The syntax and semantics of the full name are given by the data type system this data type belongs to. For example, in OPC UA Binary data type system, the full name is a string form of its System.Xml.XmlQualifiedName, where the namespace is the target namespace of the dictionary that defines the data type.

The full name is meant to be unique if possible, but does not necessarily have to. Whether the full names are truly unique depends on the data type system, and its configuration.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also