UnvalidatedRequestValues Class
Note: This API is now obsolete.
Provides access to unvalidated form values in the HttpRequest object.
Inheritance Hierarchy
System.Object
System.Web.Helpers.UnvalidatedRequestValues
Namespace: System.Web.Helpers
Assembly: System.Web.WebPages (in System.Web.WebPages.dll)
Syntax
'Declaration
<ObsoleteAttribute("Use System.Web.HttpRequest.Unvalidated instead.")> _
Public NotInheritable Class UnvalidatedRequestValues
'Usage
Dim instance As UnvalidatedRequestValues
[ObsoleteAttribute("Use System.Web.HttpRequest.Unvalidated instead.")]
public sealed class UnvalidatedRequestValues
[ObsoleteAttribute(L"Use System.Web.HttpRequest.Unvalidated instead.")]
public ref class UnvalidatedRequestValues sealed
[<SealedAttribute>]
[<ObsoleteAttribute("Use System.Web.HttpRequest.Unvalidated instead.")>]
type UnvalidatedRequestValues = class end
public final class UnvalidatedRequestValues
The UnvalidatedRequestValues type exposes the following members.
Properties
Name | Description | |
---|---|---|
![]() |
Form | Gets a collection of unvalidated form values that were posted from the browser. |
![]() |
Item | Gets the specified unvalidated object from the collection of posted values in the HttpRequest object. |
![]() |
QueryString | Gets a collection of unvalidated query-string values. |
Top
Methods
Name | Description | |
---|---|---|
![]() |
Equals | (Inherited from Object.) |
![]() |
GetHashCode | (Inherited from Object.) |
![]() |
GetType | (Inherited from Object.) |
![]() |
ToString | (Inherited from Object.) |
Top
Remarks
This class represents a helper, which is a component that simplifies web programming in ASP.NET Web Pages. You can use the UnvalidatedRequestValues class to access form values in the HttpRequest object that have not gone through request validation.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.