System.Web.UI.Page.AsyncPageBeginProcessRequest C# (CSharp) 메소드

AsyncPageBeginProcessRequest() 개인적인 메소드

private AsyncPageBeginProcessRequest ( HttpContext context, AsyncCallback callback, object extraData ) : IAsyncResult
context HttpContext
callback AsyncCallback
extraData object
리턴 IAsyncResult
	protected IAsyncResult AsyncPageBeginProcessRequest (HttpContext context, AsyncCallback callback, object extraData) 
	{
		ProcessRequest (context);
		DummyAsyncResult asyncResult = new DummyAsyncResult (true, true, extraData);

		if (callback != null) {
			callback (asyncResult);
		}
		
		return asyncResult;
	}
Page