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

UpdateRaw() public method

Updates the history.
public UpdateRaw ( PerformUpdateType updateType, int serverHandles, DaValue values ) : int[]
updateType PerformUpdateType
serverHandles int
values DaValue
return int[]
        public int[] UpdateRaw(
            PerformUpdateType updateType,
            int[] serverHandles,
            DaValue[] values)
        {
            Session session = ThrowIfNotConnected();
            
            // create the update requests.
            List<HdaUpdateRequest> requests = CreateUpdateRequests(
                session,
                updateType,
                serverHandles,
                values);

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

Same methods

ComHdaProxy::UpdateRaw ( int transactionId, PerformUpdateType updateType, int serverHandles, DaValue values, int &cancelId ) : int[]