Table of Contents

Class PayloadTooLargeException

Namespace
Cuemon.AspNetCore.Http
Assembly
Cuemon.AspNetCore.dll

The exception that is thrown when the request entity is larger than limits defined by server.

public class PayloadTooLargeException : HttpStatusCodeException, ISerializable
Inheritance
PayloadTooLargeException
Implements
Inherited Members

Constructors

PayloadTooLargeException()

Initializes a new instance of the PayloadTooLargeException class.

public PayloadTooLargeException()

PayloadTooLargeException(Exception)

Initializes a new instance of the PayloadTooLargeException class.

public PayloadTooLargeException(Exception innerException)

Parameters

innerException Exception

The exception that is the cause of the current exception.

PayloadTooLargeException(String, Exception)

Initializes a new instance of the PayloadTooLargeException class.

public PayloadTooLargeException(string message, Exception innerException = null)

Parameters

message String

The message that describes the HTTP status code.

innerException Exception

The exception that is the cause of the current exception.

See Also