InputFormatterException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
InputFormatterException() |
Initializes a new instance of InputFormatterException. |
InputFormatterException(String) |
Initializes a new instance of InputFormatterException with the specified |
InputFormatterException(String, Exception) |
Initializes a new instance of InputFormatterException with the specified |
InputFormatterException()
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
Initializes a new instance of InputFormatterException.
public:
InputFormatterException();
public InputFormatterException ();
Public Sub New ()
Applies to
InputFormatterException(String)
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
Initializes a new instance of InputFormatterException with the specified message
.
public:
InputFormatterException(System::String ^ message);
public InputFormatterException (string message);
new Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException : string -> Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException
Public Sub New (message As String)
Parameters
- message
- String
The exception message.
Applies to
InputFormatterException(String, Exception)
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
Initializes a new instance of InputFormatterException with the specified message
and
inner exception that is the cause of this exception.
public:
InputFormatterException(System::String ^ message, Exception ^ innerException);
public InputFormatterException (string message, Exception innerException);
new Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException : string * Exception -> Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The exception message.
- innerException
- Exception
The exception that is the cause of the current exception.