Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the verb="*"?

Can any one tell me , when we register the custom HTTPHander in web.config like below

 <add verb="*" path="SampleHandler.new" 
    type="SampleHandler, SampleHandlerAssembly" />

in this What is the meaning of the verb="*" and what is the it's use?

like image 999
Vijjendra Avatar asked May 06 '11 18:05

Vijjendra


People also ask

What is the meaning of verb *?

Revised on 20 October 2022. A verb is a word that describes what the subject of a sentence is doing.

What's a verb example?

A verb is a word that we use to refer to actions (what things do) and states of being (how things are). For example, the words describe, eat, and rotate are verbs.

What are the 4 types of verbs?

There are four TYPES of verbs: intransitive, transitive, linking, and passive.


1 Answers

It means all HTTP verbs: GET, POST, HEAD, PUT and DELETE

The verb list can be either a comma-separated list of HTTP verbs (for example, "GET, PUT, POST") or a start-script mapping (for example, the wildcard character * [an asterisk]).

http://msdn.microsoft.com/en-us/library/7d6sws33%28v=vs.71%29.aspx

like image 128
nbushnell Avatar answered Sep 21 '22 05:09

nbushnell