示例#1
0
 /// <summary>
 /// calls send reply interception point. Throws an exception, if an interception point throws
 /// an exception.
 /// </summary>
 internal void SendReply(ServerRequestInfoImpl serverInfo)
 {
     while (ProceedToNextInterceptor())
     {
         ServerRequestInterceptor current = GetCurrentInterceptor();
         current.send_reply(serverInfo);
     }
 }