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

BaseObjectState() public method

Initializes the instance with its defalt attribute values.
public BaseObjectState ( NodeState parent ) : System
parent NodeState
return System
        public BaseObjectState(NodeState parent) : base(NodeClass.Object, parent)
        {
            m_eventNotifier = EventNotifiers.None;

            if (parent != null)
            {
                ReferenceTypeId = Opc.Ua.ReferenceTypeIds.HasComponent;
            }
        }