示例#1
0
 internal ServiceInvoker(ControllerContext controllerContext,
                         ModelBindingContext bindingContext)
 {
     this.ControllerContext = controllerContext;
     this.BindingContext    = bindingContext;
     this.InvokerContext    = new ServiceInvokerContext();
     this.isComplete        = false;
 }
示例#2
0
 public void Dispose()
 {
     this.ControllerContext = null;
     this.BindingContext    = null;
     this.InvokerContext    = null;
 }