Exemplo n.º 1
0
        void EndPreRequestHandlerExecute(IAsyncResult ar)
        {
            AsyncHandler asyncHandler = ar as AsyncHandler;

            Unreferenced.Parameter(asyncHandler);
        }
Exemplo n.º 2
0
 IAsyncResult BeginPreRequestHandlerExecute(Object source, EventArgs e, AsyncCallback cb, Object state)
 {
     HttpApplication httpApplication = (HttpApplication)source;
     AsyncHandler asyncHandler = new AsyncHandler(cb, this, httpApplication, state);
     asyncHandler.Start();
     return asyncHandler;
 }
Exemplo n.º 3
0
 private void EndPreRequestHandlerExecute(IAsyncResult ar)
 {
     AsyncHandler handler = ar as AsyncHandler;
 }