CookieValueProvider.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.
Retrieves a value object using the specified key.
Overloads
GetValue(String) |
Retrieves a value object using the specified key. |
GetValue(String, Boolean) |
Retrieves a value object using the specified key and a parameter that specifies whether validation should be skipped. |
GetValue(String)
Retrieves a value object using the specified key.
public:
virtual System::Web::ModelBinding::ValueProviderResult ^ GetValue(System::String ^ key);
public System.Web.ModelBinding.ValueProviderResult GetValue (string key);
abstract member GetValue : string -> System.Web.ModelBinding.ValueProviderResult
override this.GetValue : string -> System.Web.ModelBinding.ValueProviderResult
Public Function GetValue (key As String) As ValueProviderResult
Parameters
- key
- String
The key.
Returns
The value object.
Implements
Applies to
GetValue(String, Boolean)
Retrieves a value object using the specified key and a parameter that specifies whether validation should be skipped.
public:
virtual System::Web::ModelBinding::ValueProviderResult ^ GetValue(System::String ^ key, bool skipValidation);
public 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 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 object.