C# Class WebStreams.Server.ControllerRoute

Describes a route on a controller.
显示文件 Open project: WebStreams/WebStreams.Server Class Usage Examples

Public Methods

Method Description
ControllerRoute ( string route, Type controllerType, Invoker invoker, HashSet observableParameters, bool hasBodyParameter ) : System

Initializes a new instance of the ControllerRoute class.

Method Details

ControllerRoute() public method

Initializes a new instance of the ControllerRoute class.
public ControllerRoute ( string route, Type controllerType, Invoker invoker, HashSet observableParameters, bool hasBodyParameter ) : System
route string /// The route. ///
controllerType System.Type /// The controller type. ///
invoker Invoker /// The invoker. ///
observableParameters HashSet /// The observable parameters. ///
hasBodyParameter bool /// The value indicating whether or not this route has a parameter derived from the request body. ///
return System