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

TypeTable() public method

Initializes the object with default values.
public TypeTable ( Opc.Ua.NamespaceTable namespaceUris ) : System.Collections.Generic
namespaceUris Opc.Ua.NamespaceTable The namespace URIs.
return System.Collections.Generic
        public TypeTable(NamespaceTable namespaceUris)
        {
            m_namespaceUris  = namespaceUris;
            m_referenceTypes = new SortedDictionary<QualifiedName,TypeInfo>();
            m_nodes = new NodeIdDictionary<TypeInfo>();
            m_encodings = new NodeIdDictionary<TypeInfo>();
        }
        #endregion