HttpServer.Controllers Namespace

HttpServer.dll

[Missing <summary> documentation for N:HttpServer.Controllers]

Classes

  ClassDescription
AuthRequiredAttribute
Marks methods to let framework know that the method is protected
AuthValidatorAttribute
Method marked with this attribute determines if authentication is required.
BeforeFilterAttribute
Methods marked with BeforeFilter will be invoked before each request.
ControllerNameAttribute
This attribute can be used to map a controller to a specific url without using the class name.
RawHandlerAttribute
This attribute tells the controller that the method uses SendHeader and/or SendBody to handle the request.
RequestController
A controller in the Model-View-Controller pattern. Derive this class and add method with one of the following signatures: "public string MethodName()" or "public void MyMethod()". The first should return a string with the response, the latter should use SendHeader and SendBody methods to handle the response.
ViewController
View controllers integrates the templates, by adding Render methods.

Enumerations

  EnumerationDescription
FilterPosition
Determins when a before filter is executed.