Opc.Ua.SessionEndpoint.HistoryUpdate C# (CSharp) Method

HistoryUpdate() public method

The operation contract for the HistoryUpdate service.
public HistoryUpdate ( HistoryUpdateMessage request ) : HistoryUpdateResponseMessage
request HistoryUpdateMessage
return HistoryUpdateResponseMessage
        public virtual HistoryUpdateResponseMessage HistoryUpdate(HistoryUpdateMessage request)
        {
            HistoryUpdateResponse response = null;

            try
            {
                // OnRequestReceived(message.HistoryUpdateRequest);

                SetRequestContext(RequestEncoding.Xml);
                response = (HistoryUpdateResponse)HistoryUpdate(request.HistoryUpdateRequest);
                // OnResponseSent(response);
                return new HistoryUpdateResponseMessage(response);
            }
            catch (Exception e)
            {
                Exception fault = CreateSoapFault(request.HistoryUpdateRequest, e);
                // OnResponseFaultSent(fault);
                throw fault;
            }
        }
        #else

Same methods

SessionEndpoint::HistoryUpdate ( IServiceRequest incoming ) : IServiceResponse
SessionEndpoint