NameValueCollectionValueProvider.GetValue Method
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.
Returns the value for the specified key.
Overloads
GetValue(String) |
Returns the value for the specified key. |
GetValue(String, Boolean) |
Returns the value for the specified key and optionally enables the caller to specify whether request validation should be skipped. |
GetValue(String)
Returns the value for 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.
Returns
The value for the specified key.
Implements
Remarks
Calling this method is equivalent to calling the GetValue method overload and passing false
for the skipValidation
parameter.
Applies to
GetValue(String, Boolean)
Returns the value for the specified key and optionally enables the caller to specify whether request 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.
- skipValidation
- Boolean
true
to skip validation; otherwise, false
.
Returns
The value for the specified key.