示例#1
0
 /// <summary>
 /// calls receive request service contexts interception point. Throws an exception, if an interception point throws
 /// an exception.
 /// </summary>
 internal void ReceiveRequestServiceContexts(ServerRequestInfoImpl serverInfo)
 {
     while (ProceedToNextInterceptor())
     {
         ServerRequestInterceptor current = GetCurrentInterceptor();
         current.receive_request_service_contexts(serverInfo);
     }
 }