Opc.Ua.Server.StandardServer.OnRequestComplete C# (CSharp) Method

OnRequestComplete() protected method

Verifies that the request header is valid.
protected OnRequestComplete ( OperationContext context ) : void
context OperationContext The operation context.
return void
        protected virtual void OnRequestComplete(OperationContext context)
        {
            lock (m_lock)
            {
                if (m_serverInternal == null)
                {                    
                    throw new ServiceResultException(StatusCodes.BadServerHalted);
                }
           
                m_serverInternal.RequestManager.RequestCompleted(context);
            }
        }        
        #endregion