Opc.Ua.Com.Server.ComHdaProxy.InsertAnnotations C# (CSharp) Method

InsertAnnotations() public method

Inserts the annotations.
public InsertAnnotations ( int serverHandles, System.DateTime timestamps, Annotation annotations ) : int[]
serverHandles int
timestamps System.DateTime
annotations Annotation
return int[]
        public int[] InsertAnnotations(
            int[] serverHandles,
            DateTime[] timestamps,
            Annotation[][] annotations)
        {
            Session session = ThrowIfNotConnected();
            
            // create the update requests.
            List<HdaUpdateRequest> requests = CreateUpdateRequests(
                session,
                serverHandles,
                timestamps,
                annotations);

            // update the server.
            return UpdateHistory(session, requests, false);
        }

Same methods

ComHdaProxy::InsertAnnotations ( int transactionId, int serverHandles, System.DateTime timestamps, Annotation annotations, int &cancelId ) : int[]