123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /******************************************************************************
- ** Copyright (c) 2006-2018 Unified Automation GmbH All rights reserved.
- **
- ** Software License Agreement ("SLA") Version 2.7
- **
- ** Unless explicitly acquired and licensed from Licensor under another
- ** license, the contents of this file are subject to the Software License
- ** Agreement ("SLA") Version 2.7, or subsequent versions
- ** as allowed by the SLA, and You may not copy or use this file in either
- ** source code or executable form, except in compliance with the terms and
- ** conditions of the SLA.
- **
- ** All software distributed under the SLA is provided strictly on an
- ** "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
- ** AND LICENSOR HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
- ** LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- ** PURPOSE, QUIET ENJOYMENT, OR NON-INFRINGEMENT. See the SLA for specific
- ** language governing rights and limitations under the SLA.
- **
- ** Project: .NET based OPC UA Client Server SDK
- **
- ** Description: OPC Unified Architecture Software Development Kit.
- **
- ** The complete license agreement can be found here:
- ** http://unifiedautomation.com/License/SLA/2.7/
- ******************************************************************************/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using UnifiedAutomation.UaBase;
- using UnifiedAutomation.UaServer;
- namespace acdp
- {
- internal class AcdpServerManager : ServerManager
- {
- protected override void OnRootNodeManagerStarted(RootNodeManager nodeManager)
- {
- Console.WriteLine("Creating Node Managers.");
- XMLNodeManager lession3a = new XMLNodeManager(this);
- lession3a.Startup();
- //Lesson3bNodeManager lession3b = new Lesson3bNodeManager(this);
- //lession3b.Startup();
- }
- }
- }
|