HandlerMappingResponse

data class HandlerMappingResponse(val arguments: String? = null, val extension: String? = null, val scriptProcessor: String? = null)

The IIS handler mappings used to define which handler processes HTTP requests with certain extension. For example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.

Constructors

Link copied to clipboard
constructor(arguments: String? = null, extension: String? = null, scriptProcessor: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val arguments: String? = null

Command-line arguments to be passed to the script processor.

Link copied to clipboard
val extension: String? = null

Requests with this extension will be handled using the specified FastCGI application.

Link copied to clipboard
val scriptProcessor: String? = null

The absolute path to the FastCGI application.