Class MethodNotAllowedException
- Namespace
- Cuemon.AspNetCore.Http
- Assembly
- Cuemon.AspNetCore.dll
The exception that is thrown when the request method is known by the server but has been disabled and cannot be used.
public class MethodNotAllowedException : HttpStatusCodeException, ISerializable
- Inheritance
-
MethodNotAllowedException
- Implements
- Inherited Members
Constructors
MethodNotAllowedException()
Initializes a new instance of the MethodNotAllowedException class.
public MethodNotAllowedException()
MethodNotAllowedException(Exception)
Initializes a new instance of the MethodNotAllowedException class.
public MethodNotAllowedException(Exception innerException)
Parameters
innerException
ExceptionThe exception that is the cause of the current exception.
MethodNotAllowedException(String, Exception)
Initializes a new instance of the MethodNotAllowedException class.
public MethodNotAllowedException(string message, Exception innerException = null)
Parameters
message
StringThe message that describes the HTTP status code.
innerException
ExceptionThe exception that is the cause of the current exception.