HttpHandlerAction.Type Property

Definition

Gets or sets the HttpHandlerAction type.

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

Property Value

The HttpHandlerAction type.

Attributes

Examples

The following code example shows how to access the Type property.

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

Remarks

The Type property is a comma-separated class/assembly combination consisting of version, culture, and public-key tokens.

Note

ASP.NET searches for the handler assembly DLL in the application's private \bin directory first, and then it searches in the system assembly cache.

Applies to