Opc.Ua.Server.StandardServer.OnRequestComplete C# (CSharp) 메소드

OnRequestComplete() 보호된 메소드

Verifies that the request header is valid.
protected OnRequestComplete ( OperationContext context ) : void
context OperationContext The operation context.
리턴 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