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

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -