Opc.Ua.WcfChannelBase.OnSendRequest C# (CSharp) Method

OnSendRequest() protected method

Processes the request.
protected OnSendRequest ( object state ) : void
state object IChannelOutgoingRequest object passed to the ScheduleOutgoingRequest method.
return void
        protected virtual void OnSendRequest(object state)
        {
            try
            {
                IChannelOutgoingRequest request = (IChannelOutgoingRequest)state;
                request.CallSynchronously();
            }
            catch (Exception e)
            {
                Utils.Trace(e, "Unexpected error sending outgoing request.");
            }
        }
        #endif