UnvalidatedRequestValuesBase Class

Definition

Serves as the base class for classes that provide access to HTTP request values without triggering ASP.NET request validation.

public ref class UnvalidatedRequestValuesBase abstract
public abstract class UnvalidatedRequestValuesBase
type UnvalidatedRequestValuesBase = class
Public MustInherit Class UnvalidatedRequestValuesBase
Inheritance
UnvalidatedRequestValuesBase
Derived

Remarks

For information about request validation, see UnvalidatedRequestValues.

Constructors

UnvalidatedRequestValuesBase()

Called from constructors in derived classes in order to initialize the UnvalidatedRequestValuesBase class.

Properties

Cookies

When overridden in a derived class, gets the collection of cookies that the client sent, without triggering ASP.NET request validation.

Files

When overridden in a derived class, gets the collection of files that the client uploaded, without triggering ASP.NET request validation.

Form

When overridden in a derived class, gets the collection of form variables that the client submitted, without triggering ASP.NET request validation.

Headers

When overridden in a derived class, gets the collection of HTTP headers that the client sent, without triggering ASP.NET request validation.

Item[String]

When overridden in a derived class, gets the specified object from the Form, Cookies, QueryString, or ServerVariables collection, without triggering ASP.NET request validation.

Path

When overridden in a derived class, gets the virtual path of the requested resource without triggering ASP.NET request validation.

PathInfo

When overridden in a derived class, gets additional path information for a resource that has a URL extension, without triggering ASP.NET request validation.

QueryString

When overridden in a derived class, gets the collection of HTTP query string variables that the client submitted, without triggering ASP.NET request validation.

RawUrl

When overridden in a derived class, gets the part of the requested URL that follows the website name, without triggering ASP.NET request validation.

Url

When overridden in a derived class, gets the URL data for the request without triggering 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