Opc.Ua.Server.MonitoredItemQueue.Publish C# (CSharp) Method

Publish() public method

Publishes the oldest value in the queue.
public Publish ( DataValue &value, ServiceResult &error ) : bool
value DataValue The value.
error ServiceResult The error associated with the value.
return bool
        public bool Publish(out DataValue value, out ServiceResult error)
        {
            return Dequeue(out value, out error);
        }
        #endregion