UnvalidatedRequestValuesWrapper Class

Definition

Provides a wrapper class for the UnvalidatedRequestValuesBase class, and provides access to HTTP request values without triggering ASP.NET request validation.

public ref class UnvalidatedRequestValuesWrapper : System::Web::UnvalidatedRequestValuesBase
public class UnvalidatedRequestValuesWrapper : System.Web.UnvalidatedRequestValuesBase
type UnvalidatedRequestValuesWrapper = class
    inherit UnvalidatedRequestValuesBase
Public Class UnvalidatedRequestValuesWrapper
Inherits UnvalidatedRequestValuesBase
Inheritance
UnvalidatedRequestValuesWrapper

Remarks

For information about request validation, see UnvalidatedRequestValues.

Constructors

UnvalidatedRequestValuesWrapper(UnvalidatedRequestValues)

Initializes a new instance of the UnvalidatedRequestValuesWrapper class.

Properties

Cookies

Gets the collection of cookies that the client sent, without triggering ASP.NET request validation.

Files

Gets the collection of files that the client uploaded, without triggering ASP.NET request validation.

Form

Gets the collection of form variables that the client submitted, without triggering ASP.NET request validation.

Headers

Gets the collection of HTTP headers that the client sent, without triggering ASP.NET request validation.

Item[String]

Gets the specified object from the Form, Cookies, QueryString, or ServerVariables collection, without triggering ASP.NET request validation.

Path

Gets the virtual path of the requested resource without triggering ASP.NET request validation.

PathInfo

Gets additional path information for a resource that has a URL extension, without triggering ASP.NET request validation.

QueryString

Gets the collection of HTTP query string variables that the client submitted, without triggering ASP.NET request validation.

RawUrl

Gets the part of the requested URL that follows the website name, without triggering ASP.NET request validation.

Url

Gets the URL data for the request without triggering ASP.NET request validation.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to