Server-side data portal options. More...
Public Member Functions | |
DataPortalServerOptions | RegisterDashboard< T > () |
Sets the type of the IDashboard to be used by the data portal. More... | |
DataPortalServerOptions | RegisterAuthorizerProvider< T > () |
Sets the type of the IDataPortalAuthorizer to be used by the data portal. More... | |
DataPortalServerOptions | AddInterceptorProvider< T > () |
Adds the type of an IInterceptDataPortal that will be executed by the server-side data portal. More... | |
DataPortalServerOptions | AddInterceptorProvider< T > (int index) |
Adds the type of an IInterceptDataPortal that will be executed by the server-side data portal. More... | |
DataPortalServerOptions | RemoveInterceptorProvider (int index) |
Removes a type of an IInterceptDataPortal. More... | |
DataPortalServerOptions | RegisterExceptionInspector< T > () |
Sets the type of the ExceptionInspector. More... | |
DataPortalServerOptions | RegisterActivator< T > () |
Sets the type of the Activator. More... | |
DataPortalServerOptions | RegisterObjectFactoryLoader< T > () |
Gets or sets the type name of the factor loader used to create server-side instances of business object factories when using the FactoryDataPortal model. More... | |
Server-side data portal options.
Definition at line 17 of file DataPortalServerOptions.cs.
DataPortalServerOptions Csla.Configuration.DataPortalServerOptions.AddInterceptorProvider< T > | ( | ) |
Adds the type of an IInterceptDataPortal that will be executed by the server-side data portal.
T | : | IInterceptDataPortal |
Definition at line 66 of file DataPortalServerOptions.cs.
DataPortalServerOptions Csla.Configuration.DataPortalServerOptions.AddInterceptorProvider< T > | ( | int | index | ) |
Adds the type of an IInterceptDataPortal that will be executed by the server-side data portal.
index | Index at which new item should be added. |
T | : | IInterceptDataPortal |
Definition at line 77 of file DataPortalServerOptions.cs.
DataPortalServerOptions Csla.Configuration.DataPortalServerOptions.RegisterActivator< T > | ( | ) |
Sets the type of the Activator.
T |
T | : | IDataPortalActivator |
Definition at line 117 of file DataPortalServerOptions.cs.
DataPortalServerOptions Csla.Configuration.DataPortalServerOptions.RegisterAuthorizerProvider< T > | ( | ) |
Sets the type of the IDataPortalAuthorizer to be used by the data portal.
T |
T | : | IAuthorizeDataPortal |
Definition at line 49 of file DataPortalServerOptions.cs.
DataPortalServerOptions Csla.Configuration.DataPortalServerOptions.RegisterDashboard< T > | ( | ) |
Sets the type of the IDashboard to be used by the data portal.
T |
T | : | Server.Dashboard.IDashboard |
Definition at line 30 of file DataPortalServerOptions.cs.
DataPortalServerOptions Csla.Configuration.DataPortalServerOptions.RegisterExceptionInspector< T > | ( | ) |
Sets the type of the ExceptionInspector.
T |
T | : | IDataPortalExceptionInspector |
Definition at line 102 of file DataPortalServerOptions.cs.
DataPortalServerOptions Csla.Configuration.DataPortalServerOptions.RegisterObjectFactoryLoader< T > | ( | ) |
Gets or sets the type name of the factor loader used to create server-side instances of business object factories when using the FactoryDataPortal model.
Type must implement IObjectFactoryLoader.
T |
T | : | IObjectFactoryLoader |
Definition at line 138 of file DataPortalServerOptions.cs.
DataPortalServerOptions Csla.Configuration.DataPortalServerOptions.RemoveInterceptorProvider | ( | int | index | ) |
Removes a type of an IInterceptDataPortal.
index | Index from which item will be removed. |
Definition at line 87 of file DataPortalServerOptions.cs.