







Determins when a before filter is executed.
Namespace:
HttpServer.Controllers
Assembly:
HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public enum FilterPosition |
| Visual Basic (Declaration) |
|---|
Public Enumeration FilterPosition |
| Visual C++ |
|---|
public enum class FilterPosition |
Members
| Member name | Description | |
|---|---|---|
| First |
Filter will be invoked first (unless another filter is added after this one with the First position)
| |
| Between |
Invoke after all first filters, and before the last filters.
| |
| Last |
Filter will be invoked last (unless another filter is added after this one with the Last position)
|
