HttpHandlerAction.Type 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 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
属性值
- 属性
示例
下面的代码示例演示如何访问 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,然后在系统程序集缓存中搜索。