Click or drag to resize

DataContextConfigureView(Type, Type, HttpRequestMessage, Object) Method

Configures a view establishing user roles based on modeled table model and SignalR hub.

Namespace: GSF.Web.Model
Assembly: GSF.Web (in GSF.Web.dll) Version: 2.4.181-beta
Syntax
public void ConfigureView(
	Type model,
	Type hub,
	HttpRequestMessage request,
	Object viewBag
)
View Source

Parameters

model  Type
Modeled database table (or view) type.
hub  Type
Type of SignalR hub that implements IRecordOperationsHub.
request  HttpRequestMessage
HTTP request message 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 self-hosted web servers, route ID is passed as a command line parameter, e.g.: myview.cshtml?RouteID=ShowDeleted
See Also