Opc.Ua.EUInformation.EUInformation C# (CSharp) Method

EUInformation() public method

Initializes the object with the unitName and namespaceUri.
public EUInformation ( string unitName, string namespaceUri ) : System
unitName string
namespaceUri string
return System
        public EUInformation(string unitName, string namespaceUri)
        {
            Initialize();

            m_displayName  = new LocalizedText(unitName);
            m_description  = new LocalizedText(unitName);
            m_namespaceUri = namespaceUri;
        }

Same methods

EUInformation::EUInformation ( string shortName, string longName, string namespaceUri ) : System
EUInformation