HTTPBodyProcessing
public enum HTTPBodyProcessing
Indicates whether the body is going to be processed or ignored
-
Used to discard the body data associated with the incoming HTTP request
Declaration
Swift
case discardBody
-
Used to process the body data associated with the imcoming HTTP request using a
HTTPBodyHandler
Declaration
Swift
case processBody(handler: HTTPBodyHandler)