Opc.Ua.Com.Server.ComNamespaceMapper.StringTableMapping.Initialize C# (CSharp) Method

Initialize() public method

Initializes the mapping between the tables.
The local table is updates with missing URIs from the remote table.
public Initialize ( List localTable, StringTable remoteTable ) : void
localTable List The local table.
remoteTable StringTable The remote table.
return void
            public void Initialize(List<string> localTable, StringTable remoteTable)
            {
                m_remoteToLocal = InitializeRemoteToLocalMapping(localTable, remoteTable);
                m_localToRemote = InitializeLocalToRemoteMapping(localTable, remoteTable);
            }
            #endregion