HttpHandlerAction.Type Propriedade

Definição

Obtém ou define o HttpHandlerAction tipo.

public:
 property System::String ^ Type { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("type", IsRequired=true)]
public string Type { get; set; }
[<System.Configuration.ConfigurationProperty("type", IsRequired=true)>]
member this.Type : string with get, set
Public Property Type As String

Valor de Propriedade

O HttpHandlerAction tipo.

Atributos

Exemplos

O seguinte exemplo de código mostra como aceder à Type propriedade.

// Change the Type for the HttpHandlerAction.
httpHandler.Type = 
    "Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler";
' Change the Type for the HttpHandlerAction.
httpHandler.Type = _
    "Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler"

Observações

A Type propriedade é uma combinação classe/assembly separada por vírgulas composta por tokens de versão, cultura e chave pública.

Note

O ASP.NET procura primeiro a DLL assembly do handler no diretório privado \bin da aplicação, e depois pesquisa na cache assembly do sistema.

Aplica-se a