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
Public property Form Gets a collection of unvalidated form values that were posted from the browser.
Public property Item Gets the specified unvalidated object from the collection of posted values in the HttpRequest object.
Public property QueryString Gets a collection of unvalidated query-string values.

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method 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.

See Also

Reference

System.Web.Helpers Namespace