Opc.Ua.Client.NodeCache.NodeCache C# (CSharp) Method

NodeCache() public method

Initializes the object with default values.
public NodeCache ( Session session ) : System
session Session
return System
        public NodeCache(Session session)
        {
            if (session == null) throw new ArgumentNullException("session");

            m_session  = session;
            m_typeTree = new TypeTable(m_session.NamespaceUris);
            m_nodes    = new NodeTable(m_session.NamespaceUris, m_session.ServerUris, m_typeTree);
        }
        #endregion