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

DeleteAtTime() public method

Deletes the data at the specified times.
public DeleteAtTime ( System.DateTime timestamps, int serverHandles ) : int[]
timestamps System.DateTime
serverHandles int
return int[]
        public int[] DeleteAtTime(
            DateTime[] timestamps,
            int[] serverHandles)
        {
            Session session = ThrowIfNotConnected();
            
            // create the delete requests.
            List<HdaUpdateRequest> requests = CreateUpdateRequests(
                session,
                timestamps,
                serverHandles);

            // delete the values.
            return UpdateHistory(session, requests, false);
        }

Same methods

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