Opc.Ua.ObjectNode.Write C# (CSharp) 메소드

Write() 보호된 메소드

Writes the value of an attribute.
protected Write ( uint attributeId, object value ) : ServiceResult
attributeId uint The attribute id.
value object The value.
리턴 ServiceResult
        protected override ServiceResult Write(uint attributeId, object value)
        {
            switch (attributeId)
            {
                case Attributes.EventNotifier: { m_eventNotifier = (byte)value; return ServiceResult.Good; }
            }

            return base.Write(attributeId, value);
        }
        #endregion