HttpHandlerAction.Type Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.