ValueProviderCollection.GetValue Method

Definition

Returns a value object using the specified key.

Overloads

GetValue(String)

Returns a value object using the specified key.

GetValue(String, Boolean)

Returns a value object using the specified key and optionally specifies whether validation should be skipped.

GetValue(String)

Returns a value object using the specified key.

public:
 virtual System::Web::ModelBinding::ValueProviderResult ^ GetValue(System::String ^ key);
public virtual System.Web.ModelBinding.ValueProviderResult GetValue (string key);
abstract member GetValue : string -> System.Web.ModelBinding.ValueProviderResult
override this.GetValue : string -> System.Web.ModelBinding.ValueProviderResult
Public Overridable Function GetValue (key As String) As ValueProviderResult

Parameters

key
String

The key of the value object to retrieve.

Returns

The value object.

Implements

Remarks

This method calls GetValue(String, Boolean), passing false for the skipValidation parameter.

Applies to

GetValue(String, Boolean)

Returns a value object using the specified key and optionally specifies whether validation should be skipped.

public:
 virtual System::Web::ModelBinding::ValueProviderResult ^ GetValue(System::String ^ key, bool skipValidation);
public virtual System.Web.ModelBinding.ValueProviderResult GetValue (string key, bool skipValidation);
abstract member GetValue : string * bool -> System.Web.ModelBinding.ValueProviderResult
override this.GetValue : string * bool -> System.Web.ModelBinding.ValueProviderResult
Public Overridable Function GetValue (key As String, skipValidation As Boolean) As ValueProviderResult

Parameters

key
String

The key of the value object to retrieve.

skipValidation
Boolean

true to skip validation; otherwise, false.

Returns

The value object.

Implements

Applies to