HttpHandlerAction.Type Eigenschap

Definitie

Hiermee haalt u het type op of stelt u het HttpHandlerAction in.

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

Waarde van eigenschap

Het HttpHandlerAction type.

Kenmerken

Voorbeelden

In het volgende codevoorbeeld ziet u hoe u toegang hebt tot de Type eigenschap.

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

Opmerkingen

De Type eigenschap is een door komma's gescheiden klasse/assembly-combinatie die bestaat uit versie-, cultuur- en openbare-sleuteltokens.

Note

ASP.NET zoekt eerst naar het assembly-DLL-bestand van de handler in de privémap \bin van de toepassing en vervolgens in de cache van de systeemassembly.

Van toepassing op