Opc.Ua.Server.ResourceManager.ResourceManager C# (CSharp) Method

ResourceManager() public method

Initializes the resource manager with the server instance that owns it.
public ResourceManager ( IServerInternal server, ApplicationConfiguration configuration ) : System
server IServerInternal
configuration ApplicationConfiguration
return System
        public ResourceManager(IServerInternal server, ApplicationConfiguration configuration)
        {
            if (server == null) throw new ArgumentNullException("server");    
            if (configuration == null) throw new ArgumentNullException("configuration");
           
            m_server = server;
            m_translationTables = new List<TranslationTable>();
        }
        #endregion