次の方法で共有


InputFormatterException コンストラクター

定義

オーバーロード

InputFormatterException()

InputFormatterException の新しいインスタンスを初期化します。

InputFormatterException(String)

message を指定して、InputFormatterException の新しいインスタンスを初期化します。

InputFormatterException(String, Exception)

この例外の原因である指定された message 例外と内部例外を使用して、 の新しいインスタンスInputFormatterExceptionを初期化します。

InputFormatterException()

ソース:
InputFormatterException.cs
ソース:
InputFormatterException.cs
ソース:
InputFormatterException.cs

InputFormatterException の新しいインスタンスを初期化します。

public:
 InputFormatterException();
public InputFormatterException ();
Public Sub New ()

適用対象

InputFormatterException(String)

ソース:
InputFormatterException.cs
ソース:
InputFormatterException.cs
ソース:
InputFormatterException.cs

message を指定して、InputFormatterException の新しいインスタンスを初期化します。

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)

ソース:
InputFormatterException.cs
ソース:
InputFormatterException.cs
ソース:
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

現在の例外の原因となった例外。

適用対象