次の方法で共有


ValueProviderException コンストラクター

定義

オーバーロード

ValueProviderException(String)

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

ValueProviderException(String, Exception)

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

ValueProviderException(String)

ソース:
ValueProviderException.cs

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

public:
 ValueProviderException(System::String ^ message);
public ValueProviderException (string message);
new Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderException : string -> Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderException
Public Sub New (message As String)

パラメーター

message
String

例外メッセージです。

適用対象

ValueProviderException(String, Exception)

ソース:
ValueProviderException.cs

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

public:
 ValueProviderException(System::String ^ message, Exception ^ innerException);
public ValueProviderException (string message, Exception innerException);
new Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderException : string * Exception -> Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

例外メッセージです。

innerException
Exception

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

適用対象