Click or drag to resize

DataContextConfigureViewTModel, THub(String, Object) Method

Configures a view establishing user roles based on modeled table TModel and SignalR THub.

Namespace: GSF.Web.Model
Assembly: GSF.Web (in GSF.Web.dll) Version: 2.4.181-beta
Syntax
public void ConfigureView<TModel, THub>(
	string routeID,
	Object viewBag
)
where TModel : class, new()
where THub : new(), IRecordOperationsHub
View Source

Parameters

routeID  String
Route ID for view, if any (e.g., AddNew or ShowDeleted).
viewBag  Object
Current view bag.

Type Parameters

TModel
Modeled database table (or view).
THub
SignalR hub that implements IRecordOperationsHub.
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 what is requested as the routeID parameter. In many use cases this is a primary key or action value for the page, e.g., "ShowDeleted".
See Also