|
DataContextConfigureView(Type, Type, RequestContext, Object) Method
|
Configures a view establishing user roles based on modeled table model and SignalR hub.
Namespace: GSF.Web.ModelAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.248-beta
Syntaxpublic void ConfigureView(
Type model,
Type hub,
RequestContext requestContext,
Object viewBag
)
Public Sub ConfigureView (
model As Type,
hub As Type,
requestContext As RequestContext,
viewBag As Object
)
public:
void ConfigureView(
Type^ model,
Type^ hub,
RequestContext^ requestContext,
Object^ viewBag
)
member ConfigureView :
model : Type *
hub : Type *
requestContext : RequestContext *
viewBag : Object -> unit
function ConfigureView(model, hub, requestContext, viewBag);
View SourceParameters
- model Type
- Modeled database table (or view) type.
- hub Type
- Type of SignalR hub that implements IRecordOperationsHub.
- requestContext RequestContext
- Url.RequestContext for view used to derive route ID, if any.
- viewBag Object
- Current view bag.
Remarks
This is normally called from controller before returning view action result.
For normal MVC views the common route is "{controller}/{action}/{id}", the {id} of
the route is the route ID parameter derived from the route data. In many use
cases this is a primary key or action value for the page, e.g., "ShowDeleted".
See Also