HttpHandlerAction.Type Property

 

Gets or sets the HttpHandlerAction type.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

<ConfigurationPropertyAttribute("type", IsRequired := True)>
Public Property Type As String

Property Value

Type: System.String

The HttpHandlerAction type.

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

System_CAPS_noteNote

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.

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

' Change the Type for the HttpHandlerAction.
httpHandler.Type = _
    "Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler"

.NET Framework
Available since 2.0
Return to top
Show: