Condividi tramite


HttpHandlerAction.Type Proprietà

Definizione

Ottiene o imposta il 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

Valore della proprietà

Il tipo HttpHandlerAction.

Attributi

Esempio

Nell'esempio di codice seguente viene illustrato come accedere alla Type proprietà .

// 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"

Commenti

La Type proprietà è una combinazione di classi/assembly delimitate da virgole costituita da token di versione, impostazioni cultura e chiave pubblica.

Annotazioni

ASP.NET cerca prima la DLL dell'assembly del gestore nella directory \bin privata dell'applicazione e quindi cerca nella cache degli assembly di sistema.

Si applica a