예제 #1
0
 public virtual void OnViewComponentAfterViewExecute(
     IProxyActionDescriptor actionDescriptor,
     IProxyViewComponentContext viewComponentContext,
     IProxyView view)
 {
     ViewComponentAfterViewExecute = new OnViewComponentAfterViewExecuteEventData()
     {
         ActionDescriptor     = actionDescriptor,
         ViewComponentContext = viewComponentContext,
         View = view
     };
 }
예제 #2
0
 public virtual void OnBeforeViewComponent(
     IProxyActionDescriptor actionDescriptor,
     IProxyViewComponentContext viewComponentContext,
     object viewComponent)
 {
     BeforeViewComponent = new OnBeforeViewComponentEventData()
     {
         ActionDescriptor     = actionDescriptor,
         ViewComponentContext = viewComponentContext,
         ViewComponent        = viewComponent
     };
 }
예제 #3
0
 public virtual void OnAfterViewComponent(
     IProxyActionDescriptor actionDescriptor,
     IProxyViewComponentContext viewComponentContext,
     IProxyViewComponentResult viewComponentResult,
     object viewComponent)
 {
     AfterViewComponent = new OnAfterViewComponentEventData()
     {
         ActionDescriptor     = actionDescriptor,
         ViewComponentContext = viewComponentContext,
         ViewComponentResult  = viewComponentResult,
         ViewComponent        = viewComponent
     };
 }
예제 #4
0
 public virtual void OnViewComponentBeforeViewExecute(
     IProxyActionDescriptor actionDescriptor,
     IProxyViewComponentContext viewComponentContext,
     IProxyView view)
 {
     ViewComponentBeforeViewExecute = new OnViewComponentBeforeViewExecuteEventData()
     {
         ActionDescriptor = actionDescriptor,
         ViewComponentContext = viewComponentContext,
         View = view
     };
 }
예제 #5
0
 public virtual void OnBeforeViewComponent(
     IProxyActionDescriptor actionDescriptor,
     IProxyViewComponentContext viewComponentContext,
     object viewComponent)
 {
     BeforeViewComponent = new OnBeforeViewComponentEventData()
     {
         ActionDescriptor = actionDescriptor,
         ViewComponentContext = viewComponentContext,
         ViewComponent = viewComponent
     };
 }
예제 #6
0
 public virtual void OnAfterViewComponent(
     IProxyActionDescriptor actionDescriptor,
     IProxyViewComponentContext viewComponentContext,
     IProxyViewComponentResult viewComponentResult,
     object viewComponent)
 {
     AfterViewComponent = new OnAfterViewComponentEventData()
     {
         ActionDescriptor = actionDescriptor,
         ViewComponentContext = viewComponentContext,
         ViewComponentResult = viewComponentResult,
         ViewComponent = viewComponent
     };
 }