Opc.Ua.Sample.MonitoredItemQueue.Publish C# (CSharp) 메소드

Publish() 공개 메소드

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.
리턴 bool
        public bool Publish(out DataValue value, out ServiceResult error)
        {
            return Dequeue(out value, out error);
        }
        #endregion