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

HandlerMapping Class

Definition

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.

[System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.HandlerMappingTypeConverter))]
public class HandlerMapping : Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IHandlerMapping
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.HandlerMappingTypeConverter))>]
type HandlerMapping = class
    interface IHandlerMapping
    interface IJsonSerializable
Public Class HandlerMapping
Implements IHandlerMapping
Inheritance
HandlerMapping
Attributes
Implements

Constructors

HandlerMapping()

Creates an new HandlerMapping instance.

Properties

Argument

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

Extension

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

ScriptProcessor

The absolute path to the FastCGI application.

Methods

DeserializeFromDictionary(IDictionary)

Deserializes a IDictionary into an instance of HandlerMapping.

DeserializeFromPSObject(PSObject)

Deserializes a PSObject into an instance of HandlerMapping.

FromJson(JsonNode)

Deserializes a JsonNode into an instance of Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IHandlerMapping.

FromJsonString(String)

Creates a new instance of HandlerMapping, deserializing the content from a json string.

ToJson(JsonObject, SerializationMode)

Serializes this instance of HandlerMapping into a JsonNode.

ToJsonString()

Serializes this instance to a json string.

ToString()

Applies to