|
|
INTEGER HandleNotAllowedMethod (IWebRequest)
|
/* Default handler for unsupported methods
@param IWebRequest The request being serviced
@return integer An optional status code. A zero or null value means this method will deal with all errors */
|
|
|
INTEGER HandleNotImplemented (IWebRequest)
|
/* Default handler for unknown methods
@param IWebRequest The request being serviced
@return integer An optional status code. A zero or null value means this method will deal with all errors */
|
|
|
INTEGER HandleRequest ()
|
/* Uses the default implementation for each HTTP method, which is one of HandleNotAllowedMethod
or HandleNotImplemented */
|