Opc.Ua.Server.ResourceManager.ResourceManager C# (CSharp) 메소드

ResourceManager() 공개 메소드

Initializes the resource manager with the server instance that owns it.
public ResourceManager ( IServerInternal server, ApplicationConfiguration configuration ) : System
server IServerInternal
configuration ApplicationConfiguration
리턴 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