예제 #1
0
 internal IAsyncResult InvokeBeginMethod(ServiceMethodInfo methodInfo, object service, HttpRequest httpRequest, AsyncCallback asyncCallback)
 {
     ExTraceGlobals.CoreTracer.TraceDebug(0L, "OwaServiceMethodDispatcher.InvokeBeginMethod");
     object[] arguments = OwaServiceMethodDispatcher.CreateMethodArgumentsFromRequest(methodInfo, httpRequest);
     return(this.InternalInvokeBeginMethod(methodInfo, service, httpRequest, asyncCallback, arguments));
 }
예제 #2
0
 internal void InvokeMethod(ServiceMethodInfo methodInfo, object service, HttpRequest httpRequest, HttpResponse httpResponse)
 {
     object[] arguments = OwaServiceMethodDispatcher.CreateMethodArgumentsFromRequest(methodInfo, httpRequest);
     this.InternalInvokeMethod(methodInfo, service, httpRequest, httpResponse, arguments);
 }