object MethodDirectives extends MethodDirectives
- Source
- MethodDirectives.scala
- Grouped
- Alphabetic
- By Inheritance
- MethodDirectives
- MethodDirectives
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Method directives
- def delete: Directive0
Rejects all non-DELETE requests.
Rejects all non-DELETE requests.
- Definition Classes
- MethodDirectives
- def extractMethod: Directive1[HttpMethod]
Extracts the request method.
Extracts the request method.
- Definition Classes
- MethodDirectives
- def get: Directive0
Rejects all non-GET requests.
Rejects all non-GET requests.
- Definition Classes
- MethodDirectives
- def head: Directive0
Rejects all non-HEAD requests.
Rejects all non-HEAD requests.
- Definition Classes
- MethodDirectives
- def method(httpMethod: HttpMethod): Directive0
Rejects all requests whose HTTP method does not match the given one.
Rejects all requests whose HTTP method does not match the given one.
- Definition Classes
- MethodDirectives
- def options: Directive0
Rejects all non-OPTIONS requests.
Rejects all non-OPTIONS requests.
- Definition Classes
- MethodDirectives
- def overrideMethodWithParameter(paramName: String): Directive0
Changes the HTTP method of the request to the value of the specified query string parameter.
Changes the HTTP method of the request to the value of the specified query string parameter. If the query string parameter is not specified this directive has no effect. If the query string is specified as something that is not a HTTP method, then this directive completes the request with a
501 Not Implemented
response.This directive is useful for:
- Use in combination with JSONP (JSONP only supports GET)
- Supporting older browsers that lack support for certain HTTP methods. E.g. IE8 does not support PATCH
- Definition Classes
- MethodDirectives
- def patch: Directive0
Rejects all non-PATCH requests.
Rejects all non-PATCH requests.
- Definition Classes
- MethodDirectives
- def post: Directive0
Rejects all non-POST requests.
Rejects all non-POST requests.
- Definition Classes
- MethodDirectives
- def put: Directive0
Rejects all non-PUT requests.
Rejects all non-PUT requests.
- Definition Classes
- MethodDirectives