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

ObjectNode() public method

Creates a node from another node (copies attributes - not references).
public ObjectNode ( ILocalNode source ) : System
source ILocalNode The source.
return System
        public ObjectNode(ILocalNode source) : base(source)
        {
            this.NodeClass = NodeClass.Object;

            IObject node = source as IObject;

            if (node != null)
            {
                this.EventNotifier = node.EventNotifier;
            }
        }
        #endregion