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
Object
Exception
PayloadTooLargeException
Implements
ISerializable
Inherited Members
Exception.GetBaseException()
Exception.GetType()
Exception.Data
Exception.HelpLink
Exception.HResult
Exception.InnerException
Exception.Message
Exception.Source
Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState

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