c# - IHttpModule BeginRequest and other events not called on PATCH verb -


implemented ihttpmodule handles beginrequest event , endrequest events.

its being called correctly post , verbs. it's not executed patch verb.

here how configured in web.config

<modules>   <remove name="formsauthenticationmodule" />   <remove name="formsauthentication" />   ...   <add name="myhttpmodule" type="myhttpmodule.myhttpmodule, myhttpmodule" precondition="managedhandler" />   ... </modules> 

any ideas?

thanks


Comments

Popular posts from this blog

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

c# - Populating Gridview inside Listview ItemTemplate On Web User Control from Code Behind -