Table of Contents

Interface IUploadedFile

Namespace
CMS.Base
Assembly
CMS.Base.dll

Describes implementation that contain methods to access the content of uploaded file.

public interface IUploadedFile
Extension Methods

Properties

CanOpenReadStream

Gets a value that indicates whether the IUploadedFile implementation supports accessing the input stream via OpenReadStream() method.

bool CanOpenReadStream { get; }

Property Value

bool

ContentType

Gets the MIME content type of an uploaded file.

string ContentType { get; }

Property Value

string

FileName

Gets the fully qualified name of the file on the client.

string FileName { get; }

Property Value

string

InputStream

Gets a System.IO.Stream object that points to an uploaded file. This property will return the same object when it is accessed multiple times.

Stream InputStream { get; }

Property Value

Stream

Exceptions

NotSupportedException

Thrown when the implementation of IUploadedFile does not support accessing the input stream via shared object and the input stream must be accessed via OpenReadStream() method.

Length

Gets the size of an uploaded file in bytes.

long Length { get; }

Property Value

long

Methods

OpenReadStream()

Opens the request stream for reading the uploaded file. Once the read is completed this stream should be disposed manually.

Stream OpenReadStream()

Returns

Stream

Exceptions

NotSupportedException

Thrown when the implementation of IUploadedFile does not support accessing the input stream via opening of a new stream and the input stream must be accessed via InputStream property.