HttpHandlerAction.Type Egenskap

Definition

Hämtar eller anger HttpHandlerAction typen.

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

Egenskapsvärde

Typ HttpHandlerAction.

Attribut

Exempel

Följande kodexempel visar hur du kommer åt egenskapen Type .

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

Kommentarer

Egenskapen Type är en kommaavgränsad kombination av klass/sammansättning som består av versions-, kultur- och offentliga nyckeltoken.

Note

ASP.NET söker först efter DLL:n för hanteringssammansättningen i programmets privata \bin-katalog och söker sedan i systemsammansättningens cacheminne.

Gäller för