你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

HandlerMapping Class

  • java.lang.Object
    • com.microsoft.azure.management.appservice.HandlerMapping

public class HandlerMapping

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.

Method Summary

Modifier and Type Method and Description
String arguments()

Get the arguments value.

String extension()

Get the extension value.

String scriptProcessor()

Get the scriptProcessor value.

HandlerMapping withArguments(String arguments)

Set the arguments value.

HandlerMapping withExtension(String extension)

Set the extension value.

HandlerMapping withScriptProcessor(String scriptProcessor)

Set the scriptProcessor value.

Method Details

arguments

public String arguments()

Get the arguments value.

Returns:

the arguments value

extension

public String extension()

Get the extension value.

Returns:

the extension value

scriptProcessor

public String scriptProcessor()

Get the scriptProcessor value.

Returns:

the scriptProcessor value

withArguments

public HandlerMapping withArguments(String arguments)

Set the arguments value.

Parameters:

arguments - the arguments value to set

Returns:

the HandlerMapping object itself.

withExtension

public HandlerMapping withExtension(String extension)

Set the extension value.

Parameters:

extension - the extension value to set

Returns:

the HandlerMapping object itself.

withScriptProcessor

public HandlerMapping withScriptProcessor(String scriptProcessor)

Set the scriptProcessor value.

Parameters:

scriptProcessor - the scriptProcessor value to set

Returns:

the HandlerMapping object itself.

Applies to