Opc.Ua.Server.CustomNodeManager2.ValidationComplete C# (CSharp) Method

ValidationComplete() protected method

Marks the handle as validated and saves the node in the dynamic cache.
protected ValidationComplete ( ServerSystemContext context, NodeHandle handle, NodeState node, NodeState>.IDictionary cache ) : NodeState
context ServerSystemContext
handle NodeHandle
node NodeState
cache NodeState>.IDictionary
return NodeState
        protected virtual NodeState ValidationComplete(
            ServerSystemContext context,
            NodeHandle handle,
            NodeState node,
            IDictionary<NodeId, NodeState> cache)
        {
            handle.Node = node;
            handle.Validated = true;

            if (cache != null && handle != null)
            {
                cache[handle.NodeId] = node;
            }

            return node;
        }
CustomNodeManager2