HttpHandlerAction.Type Property

Definition

Gets or sets the HttpHandlerAction type.

C#
[System.Configuration.ConfigurationProperty("type", IsRequired=true)]
public string Type { get; set; }

Property Value

The HttpHandlerAction type.

Attributes

Examples

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

C#
// 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

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1