HttpHandlerAction.Type 属性

定义

获取或设置 HttpHandlerAction 类型。

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

属性值

String

HttpHandlerAction 类型。

属性

示例

下面的代码示例演示如何访问 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"

注解

Type 属性是逗号分隔的类/程序集组合,由版本、区域性和公钥令牌组成。

备注

ASP.NET 先在应用程序的专用 \bin 目录中搜索处理程序程序集 DLL,然后在系统程序集缓存中搜索。

适用于