HttpPostedFileBase Class

Definition

Serves as the base class for classes that provide access to individual files that have been uploaded by a client.

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

Remarks

The HttpPostedFileBase class is an abstract class that contains the same members as the HttpPostedFile class. The HttpPostedFileBase class lets you create derived classes that are like the HttpPostedFile class, but that you can customize and that work outside the ASP.NET pipeline. When you perform unit testing, you typically use a derived class to implement members that have customized behavior that fulfills the scenario you are testing.

The HttpPostedFileWrapper class derives from the HttpPostedFileBase class. The HttpPostedFileWrapper class serves as a wrapper for the HttpPostedFile class. At run time, you typically use an instance of the HttpPostedFileWrapper class to call members of the HttpPostedFile object.

Constructors

HttpPostedFileBase()

Initializes the class for use by an inherited class instance. This constructor can only be called by an inherited class.

Properties

ContentLength

When overridden in a derived class, gets the size of an uploaded file, in bytes.

ContentType

When overridden in a derived class, gets the MIME content type of an uploaded file.

FileName

When overridden in a derived class, gets the fully qualified name of the file on the client.

InputStream

When overridden in a derived class, gets a Stream object that points to an uploaded file to prepare for reading the contents of the file.

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)
SaveAs(String)

When overridden in a derived class, saves the contents of an uploaded file.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to