8 implementations of IHttpAsyncHandler
System.ServiceModel.Activation (2)
System\ServiceModel\Activation\AspNetRouteServiceHttpHandler.cs (1)
13
class AspNetRouteServiceHttpHandler :
IHttpAsyncHandler
, IRequiresSessionState
System\ServiceModel\Activation\ServiceHttpHandlerFactory.cs (1)
33
class ServiceHttpHandler :
IHttpAsyncHandler
, IRequiresSessionState
System.Web (4)
DefaultHttpHandler.cs (1)
17
public class DefaultHttpHandler :
IHttpAsyncHandler
{
Handlers\TransferRequestHandler.cs (1)
12
internal class TransferRequestHandler :
IHttpAsyncHandler
{
HttpApplication.cs (1)
69
public class HttpApplication : IComponent,
IHttpAsyncHandler
, IRequestCompletedNotifier, ISyncContext {
HttpTaskAsyncHandler.cs (1)
18
public abstract class HttpTaskAsyncHandler :
IHttpAsyncHandler
{
System.Web.Extensions (1)
Script\Services\ScriptHandlerFactory.cs (1)
45
private class AsyncHandlerWrapper : HandlerWrapper,
IHttpAsyncHandler
{
System.Xaml.Hosting (1)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (1)
137
class AsyncHandlerWrapper : HandlerWrapper,
IHttpAsyncHandler
32 references to IHttpAsyncHandler
System.Web (25)
Compilation\PageCodeDomTreeGenerator.cs (5)
53
_sourceDataClass.BaseTypes.Add(new CodeTypeReference(typeof(
IHttpAsyncHandler
)));
459
method.ImplementationTypes.Add(new CodeTypeReference(typeof(
IHttpAsyncHandler
)));
486
method.ImplementationTypes.Add(typeof(
IHttpAsyncHandler
));
517
method.ImplementationTypes.Add(new CodeTypeReference(typeof(
IHttpAsyncHandler
)));
544
method.ImplementationTypes.Add(typeof(
IHttpAsyncHandler
));
HttpApplication.cs (7)
1464
IAsyncResult
IHttpAsyncHandler
.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData) {
1494
void
IHttpAsyncHandler
.EndProcessRequest(IAsyncResult result) {
3413
private
IHttpAsyncHandler
_handler; // per call
3544
else if (handler is
IHttpAsyncHandler
) {
3546
IHttpAsyncHandler
asyncHandler = (
IHttpAsyncHandler
)handler;
3633
get { return (_application.Context.Handler is
IHttpAsyncHandler
) ? false : true; }
HttpContext.cs (2)
62
private
IHttpAsyncHandler
_asyncAppHandler; // application as handler (not always HttpApplication)
706
internal
IHttpAsyncHandler
AsyncAppHandler {
HttpRuntime.cs (3)
1693
if (app is
IHttpAsyncHandler
) {
1695
IHttpAsyncHandler
asyncHandler = (
IHttpAsyncHandler
)app;
httpserverutility.cs (4)
496
if (targetPage is
IHttpAsyncHandler
) {
519
else if (handler is
IHttpAsyncHandler
) {
529
IHttpAsyncHandler
asyncHandler = (
IHttpAsyncHandler
)handler;
HttpTaskAsyncHandler.cs (2)
38
IAsyncResult
IHttpAsyncHandler
.BeginProcessRequest(HttpContext context, AsyncCallback cb, object extraData) {
42
void
IHttpAsyncHandler
.EndProcessRequest(IAsyncResult result) {
UI\Page.cs (2)
5734
if (!(this is
IHttpAsyncHandler
)) {
6157
if (this is
IHttpAsyncHandler
) {
System.Web.Extensions (3)
Script\Services\ScriptHandlerFactory.cs (3)
51
return ((
IHttpAsyncHandler
)_originalHandler).BeginProcessRequest(context, cb, extraData);
55
((
IHttpAsyncHandler
)_originalHandler).EndProcessRequest(result);
86
if (handler is
IHttpAsyncHandler
) {
System.Xaml.Hosting (4)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (4)
117
if (httpHandler is
IHttpAsyncHandler
)
119
return new AsyncHandlerWrapper((
IHttpAsyncHandler
)httpHandler, factory);
140
IHttpAsyncHandler
httpAsyncHandler;
142
public AsyncHandlerWrapper(
IHttpAsyncHandler
httpAsyncHandler, IHttpHandlerFactory factory)