Partilhar via


HttpHandlerAction.Type Propriedade

Definição

Obtém ou define o tipo HttpHandlerAction.

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 da propriedade

String

O tipo HttpHandlerAction.

Atributos

Exemplos

O exemplo de código a seguir mostra como acessar a 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"

Comentários

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

Observação

ASP.NET pesquisa primeiro a DLL do assembly do manipulador no diretório \bin privado do aplicativo e, em seguida, pesquisa no cache do assembly do sistema.

Aplica-se a