InputFormatterException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
InputFormatterException() |
初始化 InputFormatterException 的新实例。 |
InputFormatterException(String) |
用指定的 InputFormatterException 初始化 |
InputFormatterException(String, Exception) |
使用导致此异常的指定 |
InputFormatterException()
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
初始化 InputFormatterException 的新实例。
public:
InputFormatterException();
public InputFormatterException ();
Public Sub New ()
适用于
InputFormatterException(String)
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
用指定的 InputFormatterException 初始化 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)
参数
- message
- String
异常消息。
适用于
InputFormatterException(String, Exception)
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
- Source:
- InputFormatterException.cs
使用导致此异常的指定message
和内部异常初始化 的新实例InputFormatterException。
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)
参数
- message
- String
异常消息。
- innerException
- Exception
导致当前异常的异常。