London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Class FileUploaderContextSection

Represents file uploader context section.

Inheritance
System.Object
FileUploaderContextSection
Namespace: Mediachase.FileUploader.Configuration
Assembly: Mediachase.FileUploader.dll
Version: 13.30.0
Syntax
public class FileUploaderContextSection : ConfigurationSection

Constructors

FileUploaderContextSection()

Initializes a new instance of the FileUploaderContextSection class.

Declaration
public FileUploaderContextSection()

Properties

ContentTypes

Gets the content types.

Declaration
public ContentTypeElementCollection ContentTypes { get; }
Property Value
Type Description
ContentTypeElementCollection

The content types.

Filters

Gets the filters.

Declaration
public FilterElementCollection Filters { get; }
Property Value
Type Description
FilterElementCollection

The filters.

HttpFileMaxSize

Gets or sets the maximum size of the uploaded file.

Declaration
public int HttpFileMaxSize { get; set; }
Property Value
Type Description
System.Int32

The max size of the uploaded file.

HttpPostBufferSize

Gets a 64-bit integer that represents the buffer size in bytes, which Mediachase FileUploader will use to process request. You can change this value for better optimization.

Declaration
public int HttpPostBufferSize { get; set; }
Property Value
Type Description
System.Int32

The default value is 655360 bytes.

HttpPostMaxSize

Gets or sets the maximum size of the HTTP post.

Declaration
public int HttpPostMaxSize { get; set; }
Property Value
Type Description
System.Int32

The max size of the HTTP post.

Properties

Gets the collection of properties.

Declaration
protected override ConfigurationPropertyCollection Properties { get; }
Property Value
Type Description
System.Configuration.ConfigurationPropertyCollection

SessionUidKey

Gets or sets the session uid key.

Declaration
public string SessionUidKey { get; set; }
Property Value
Type Description
System.String

The session uid key.

TempFileStorageProviderKey

Gets or sets the temp file provider key.

Declaration
public string TempFileStorageProviderKey { get; set; }
Property Value
Type Description
System.String

The temp file provider key.