![]() |
CSLA .NET 10.0.0
A home for your business logic
|
Implement this interface to create a data portal interceptor that is notified each time the data portal is invoked and completes processing. More...
Public Member Functions | |
| Task | InitializeAsync (InterceptArgs e) |
| Invoked at the start of each server-side data portal invocation, immediately after the context has been set, and before authorization. | |
| void | Complete (InterceptArgs e) |
| Invoked at the end of each server-side data portal invocation for success and exception scenarios. | |
Implement this interface to create a data portal interceptor that is notified each time the data portal is invoked and completes processing.
| void Csla.Server.IInterceptDataPortal.Complete | ( | InterceptArgs | e | ) |
Invoked at the end of each server-side data portal invocation for success and exception scenarios.
| e |
| ArgumentNullException | e is null. |
Implemented in Csla.Server.Interceptors.ServerSide.RevalidatingInterceptor.
| Task Csla.Server.IInterceptDataPortal.InitializeAsync | ( | InterceptArgs | e | ) |
Invoked at the start of each server-side data portal invocation, immediately after the context has been set, and before authorization.
| e |
| ArgumentNullException | e is null. |
Implemented in Csla.Server.Interceptors.ServerSide.RevalidatingInterceptor.