Opc.Ua.TypeTable.AddReferenceSubtype C# (CSharp) Method

AddReferenceSubtype() public method

Adds type to the table. A browse name is only required if it is a ReferenceType.
Updates the any existing entry.
public AddReferenceSubtype ( Opc.Ua.NodeId subTypeId, Opc.Ua.NodeId superTypeId, Opc.Ua.QualifiedName browseName ) : void
subTypeId Opc.Ua.NodeId The sub type identifier.
superTypeId Opc.Ua.NodeId The super type identifier.
browseName Opc.Ua.QualifiedName Name of the browse.
return void
        public void AddReferenceSubtype(NodeId subTypeId, NodeId superTypeId, QualifiedName browseName)
        {
            AddSubtype(subTypeId, superTypeId, browseName);
        }