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

AddSubtype() public method

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

Same methods

TypeTable::AddSubtype ( Opc.Ua.NodeId subTypeId, Opc.Ua.NodeId superTypeId, Opc.Ua.QualifiedName browseName ) : void