#region Copyright (c) 2011-2023 Technosoftware GmbH. All rights reserved //----------------------------------------------------------------------------- // Copyright (c) 2011-2023 Technosoftware GmbH. All rights reserved // Web: https://www.technosoftware.com // // The source code in this file is covered under a dual-license scenario: // - Owner of a purchased license: SCLA 1.0 // - GPL V3: everybody else // // SCLA license terms accompanied with this source code. // See SCLA 1.0: https://technosoftware.com/license/Source_Code_License_Agreement.pdf // // GNU General Public License as published by the Free Software Foundation; // version 3 of the License are accompanied with this source code. // See https://technosoftware.com/license/GPLv3License.txt // // This source code is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY // or FITNESS FOR A PARTICULAR PURPOSE. //----------------------------------------------------------------------------- #endregion Copyright (c) 2011-2023 Technosoftware GmbH. All rights reserved #region Using Directives #endregion namespace Technosoftware.DaAeHdaClient { /// /// Declares constants for common XML Schema and OPC namespaces. /// public class OpcNamespace { /// XML Schema public const string XML_SCHEMA = "http://www.w3.org/2001/XMLSchema"; /// XML Schema Instance public const string XML_SCHEMA_INSTANCE = "http://www.w3.org/2001/XMLSchema-instance"; /// OPC Alarmes & Events public const string OPC_ALARM_AND_EVENTS = "http://opcfoundation.org/AlarmAndEvents/"; /// OPC Complex Data public const string OPC_COMPLEX_DATA = "http://opcfoundation.org/ComplexData/"; /// OPC Data Exchange public const string OPC_DATA_EXCHANGE = "http://opcfoundation.org/DataExchange/"; /// OPC Data Access public const string OPC_DATA_ACCESS = "http://opcfoundation.org/DataAccess/"; /// OPC Historical Data Access public const string OPC_HISTORICAL_DATA_ACCESS = "http://opcfoundation.org/HistoricalDataAccess/"; /// OPC Binary 1.0 public const string OPC_BINARY = "http://opcfoundation.org/OPCBinary/1.0/"; /// OPC XML-DA 1.0 public const string OPC_DATA_ACCESS_XML10 = "http://opcfoundation.org/webservices/XMLDA/1.0/"; /// OPC UA 1.0 public const string OPC_UA10 = "http://opcfoundation.org/webservices/UA/1.0/"; } }